29 lines
593 B
VB.net
29 lines
593 B
VB.net
Imports System.ComponentModel
|
|
Imports System.Text
|
|
Imports System.Timers
|
|
Imports FlexCell
|
|
Imports System.IO.Ports
|
|
|
|
|
|
Namespace BLV_UartMdule
|
|
Public Class Blv_Uart
|
|
Inherits SerialPort
|
|
Public Property Title As String
|
|
|
|
''' <summary>
|
|
''' 提示信息
|
|
''' </summary>
|
|
''' <returns></returns>
|
|
Public Property TipString As String
|
|
|
|
Sub New(title As String, tip As String)
|
|
Me.Title = title
|
|
TipString = tip
|
|
End Sub
|
|
|
|
Private Sub InitializeComponent()
|
|
|
|
End Sub
|
|
End Class
|
|
|
|
End Namespace |