初始化项目
This commit is contained in:
29
BLV_Studio/UART/BLV_UartMdule.vb
Normal file
29
BLV_Studio/UART/BLV_UartMdule.vb
Normal file
@@ -0,0 +1,29 @@
|
||||
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
|
||||
Reference in New Issue
Block a user