Files
Desktop_BLVStudio/BLV_Studio/UART/BLV_UartMdule.vb
2025-12-11 10:06:44 +08:00

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