摘要:
使用System.IO.Ports.SerialPort.GetPortNames()枚举可用串口并验证是否被占用,空闲串口添加到comobox1控件中显示。代码如下:验证可用串口 1 public bool IsPortOpen() 2 { 3 //create vars for testing 4 bool _available = false; 5 SerialPort _tempPort; 6 String[] Portname = SerialPort.GetPortNames(); 7 8 //create a loop for each string in SerialPort. 阅读全文
摘要:
串口作为最基本的电脑通信 I/O 接口,其使用虽然在 PC 上越来越少,但是在工业仪器领域仍然用的相当普遍,由于笔者工作中需要用到串口,而且发现枚举串口至今仍未搞得很清楚,为此自己先整理下,希望大侠和同行们对我不懂和错误的地方指点一下。 1 、查询注册表 查询注册表的方法是网上见到的比较常见的方法,该方法就是使用编程方法读取注册表内信息,相当于用户通过在运行框内输入 ”regedit” (或 regedit32 )直接打开注册表,查看“ HKEY_LOCAL_MACHINE\HARDWARE\DEVICEMAP\SERIALCOMM ”项来获取串口信息。以下是源代码: CString strS 阅读全文
摘要:
button控件属性表:PropertyDescriptionAutoEllipsisSpecifies whether to append dots (…) when the text in the button is too long and can't fit the button.AutoSizeSpecifies whether the button will automatically resize to fit its content.FlatStyleDetermines the style of the button. Popup makes the button f 阅读全文
摘要:
默认值:Sizable。可供设置的FormBorderStyle 如下表:ValueDescriptionNoneThe form has no border.FixedSingleThe form has a non-resizable single line border.Fixed3DThe form has a non-resizable 3d border.FixedDialogThe form has a thick, non-resizable, dialog style border that has no minimize or maximize boxes.SizableT 阅读全文