2022-11-23 01:36:50 +00:00
|
|
|
|
Public Class Uni_KnowledgeInput
|
2022-11-23 14:30:54 +00:00
|
|
|
|
Dim PrevWidthTxt_InputWord As Integer = 470
|
2022-11-23 01:36:50 +00:00
|
|
|
|
|
2022-11-23 03:32:09 +00:00
|
|
|
|
Private Sub Uni_KnowledgeInput_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
2022-11-23 14:30:54 +00:00
|
|
|
|
cmb_Category.Items.Remove("Animals")
|
2022-11-23 03:32:09 +00:00
|
|
|
|
End Sub
|
|
|
|
|
|
2022-11-23 14:30:54 +00: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 03:32:09 +00:00
|
|
|
|
End Sub
|
2022-11-23 01:36:50 +00:00
|
|
|
|
End Class
|