2022-11-23 08:36:50 +07:00
|
|
|
|
Public Class Uni_KnowledgeInput
|
2022-11-23 21:30:54 +07:00
|
|
|
|
Dim PrevWidthTxt_InputWord As Integer = 470
|
2022-11-23 08:36:50 +07:00
|
|
|
|
|
2022-11-23 10:32:09 +07:00
|
|
|
|
Private Sub Uni_KnowledgeInput_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
2022-11-23 21:30:54 +07:00
|
|
|
|
cmb_Category.Items.Remove("Animals")
|
2022-11-23 10:32:09 +07:00
|
|
|
|
End Sub
|
|
|
|
|
|
2022-11-23 21:30:54 +07:00
|
|
|
|
Private Sub txt_InputWord_TextChanged(sender As Object, e As KeyEventArgs) Handles txt_InputWord.KeyDown
|
|
|
|
|
Select Case e.KeyCode
|
|
|
|
|
Case Keys.Enter
|
|
|
|
|
lst_Guessed.Items.Add(txt_InputWord.Text)
|
|
|
|
|
txt_InputWord.Text = Nothing
|
|
|
|
|
End Select
|
2022-11-23 10:32:09 +07:00
|
|
|
|
End Sub
|
2022-11-23 08:36:50 +07:00
|
|
|
|
End Class
|