เป็น code VB windows from แต่ผมอยากให้มันเป็น C# ผมต้องเขียนเป็นรูปแบบไหนครับ
Code (VB.NET)
Private Sub TextBox1_KeyPress(sender As Object, e As KeyPressEventArgs) _
Handles txtName.KeyPress
If Not (Asc(e.KeyChar) = 8) Then
Dim allowedChars As String = "abcdefghijklmnopqrstuvwxyz"
If Not allowedChars.Contains(e.KeyChar.ToString.ToLower) Then
e.KeyChar = ChrW(0)
e.Handled = True
End If
End If
End Sub
Tag : .NET, VB.NET, C#, VS 2010 (.NET 4.x), VS 2017 (.NET 4.x), C