VB.NET文本框特殊操作方法分享

VB.NET文本框的操作方式多样化,应用起来也比较简单,开发人员可以根据不同的需求任意选择一种方法来帮助自己实现所需要的功能。那么今天介绍的VB.NET文本框的操作方法,则是针对中文输入的限制等。

成都创新互联专注于黑山企业网站建设,成都响应式网站建设公司,购物商城网站建设。黑山网站建设公司,为黑山等地区提供建站服务。全流程专业公司,专业设计,全程项目跟踪,成都创新互联专业和态度为您提供的服务

下面是VB.NET文本框操作的相关代码:

 
 
 
  1. 'sunnyxing2004-04-01***修改   
  2. Public Class MyTextBox   
  3. Inherits System.Windows.Forms.TextBox   
  4. Private m_strValidText As String = "0123456789.+-" 
    & Chr(13).ToString   
  5. Private m_blnEditable As Boolean = True   
  6. #Region " Windows 窗体设计器生成的代码 "   
  7. Public Sub New()   
  8. MyBase.New()  

该调用是 Windows 窗体设计器所必需的。

 
 
 
  1. InitializeComponent()   
  2. '在 InitializeComponent() 
    调用之后添加任何初始化   
  3. End Sub   
  4. 'UserControl1 重写 dispose 以清理组件列表。   
  5. Protected Overloads Overrides 
    Sub Dispose(ByVal disposing As Boolean)   
  6. If disposing Then   
  7. If Not (components Is Nothing) Then   
  8. components.Dispose()   
  9. End If   
  10. End If   
  11. MyBase.Dispose(disposing)   
  12. End Sub  

Windows 窗体设计器所必需的

 
 
 
  1. Private components As System.ComponentModel.IContainer   
  2. '注意: 以下过程是 Windows 窗体设计器所必需的   
  3. '可以使用 Windows 窗体设计器修改此过程。   
  4. '不要使用代码编辑器修改它。   
  5.  
    Private Sub InitializeComponent()   
  6. components = New System.ComponentModel.Container   
  7. End Sub   
  8. #End Region   
  9. Private Sub MyTextBox_KeyPress(ByVal sender As Object, 
    ByVal e As System.Windows.Forms.KeyPressEventArgs) 
    Handles MyBase.KeyPress   
  10. Dim strLocalString As String   
  11. If EditAble Then   
  12. strLocalString = m_strValidText & Chr(8).ToString   
  13. Else   
  14. strLocalString = m_strValidText   
  15. End If   
  16. If UCase(strLocalString).IndexOf(UCase(e.KeyChar)) < 0 Then   
  17. e.Handled = True   
  18. Beep()   
  19. Else   
  20. End If   
  21. End Sub   
  22. Public Property ValidText() As String   
  23. Get   
  24. Return m_strValidText   
  25. End Get   
  26. Set(ByVal Value As String)   
  27. m_strValidText = Value   
  28. End Set   
  29. End Property   
  30. Public Property EditAble() As Boolean   
  31. Get   
  32. Return m_blnEditable   
  33. End Get   
  34. Set(ByVal Value As Boolean)   
  35. m_blnEditable = Value   
  36. End Set   
  37. End Property   
  38. Public Sub CheckText(ByVal sender As Object, ByVal e 
    As System.EventArgs) Handles MyBase.TextChanged   
  39. Dim cha As Char   
  40. Try   
  41. cha = CType(Me.Text.Substring(Me.SelectionStart - 1, 1), Char)   
  42. If m_strValidText.IndexOf(cha) < 0 Then   
  43. MeMe.Text = Me.Text.Remove(Me.SelectionStart - 1, 1)   
  44. End If   
  45. Catch ex As Exception   
  46. End Try   
  47. End Sub   
  48. End Class  

VB.NET文本框中限制中文输入的方法就为大家介绍到这里。

网站题目:VB.NET文本框特殊操作方法分享
网址分享:http://www.mswzjz.cn/qtweb/news31/286881.html

攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能