- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在研究一个完全用 c# 编写的防盗报警解决方案。该程序与基于 USB 串行端口的 IO 板通信,该 IO 板具有硬连线到其中的警报传感器。我遇到了一个问题,即 DataReceived 事件无法更新主 UI,除非我从 DataReceived 事件中调用一个名为 TextLog 的子(见末尾)。奇怪的是,来自查询区域 1 的 DataReceived 事件能够更新主 UI,但不能更新区域 2 或 3。此外,如果我在执行串行端口写入的行插入断点,它会按预期工作。
值得一提的是这些全局变量:
string ioCardRxString = "";
bool[] arrGlobalZoneStatus = new bool[4];
private void OpenIOComPort()
{
bool error = false;
else
{
// Set the port's settings
spIOCard.PortName = Settings1.Default.ioComPort;
spIOCard.BaudRate = int.Parse(Settings1.Default.ioBaudRate);
spIOCard.DataBits = int.Parse(Settings1.Default.ioDataBits);
spIOCard.StopBits = (System.IO.Ports.StopBits)Enum.Parse(typeof(System.IO.Ports.StopBits), Settings1.Default.ioStopBits);
spIOCard.Parity = (System.IO.Ports.Parity)Enum.Parse(typeof(System.IO.Ports.Parity), Settings1.Default.ioParity);
spIOCard.Handshake = (System.IO.Ports.Handshake)Enum.Parse(typeof(System.IO.Ports.Handshake), Settings1.Default.ioHandshake);
try
{
// Open the port
spIOCard.Open();
}
catch (UnauthorizedAccessException) { error = true; }
catch (System.IO.IOException) { error = true; }
catch (ArgumentException) { error = true; }
//On error, advise the user
if (error)
{
MessageBox.Show("Could not open the I/O Board COM port.");
globalIOCardError = true;
}
if (!error)
{
globalIOCardError = false;
// Do Nothing
}
}
}
private void tmrAuditSensors_Tick(object sender, EventArgs e)
{
try
{
if (globalIOCardError == false && Settings1.Default.disableSensorAudit == false)
{
if (Settings1.Default.zone1Armed == true)
{
spIOCard.Write("~in01~");
System.Threading.Thread.Sleep(25);;
}
if (Settings1.Default.zone2Armed == true)
{
spIOCard.Write("~in02~");
System.Threading.Thread.Sleep(25);;
}
if (Settings1.Default.zone3Armed == true)
{
spIOCard.Write("~in03~");
System.Threading.Thread.Sleep(25);;
}
//Applicable results will appear on serial data received event
}
}
catch
{
textLog("There was a problem writing to the serial port, check and restart app");
emergencyHalt();
}
}
private void spIO_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)
{
ioCardRxString = spIOCard.ReadExisting();
textLog(ioCardRxString); //*Cannot make it work without this
if (ioCardRxString.Contains("in05=1") == true)
{
arrGlobalZoneStatus[1] = true;
}
if (ioCardRxString.Contains("in05=0") == true)
{
arrGlobalZoneStatus[1] = false;
}
if (ioCardRxString.Contains("in01=1") == true)
{
arrGlobalZoneStatus[2] = true;
}
if (ioCardRxString.Contains("in01=0") == true)
{
arrGlobalZoneStatus[2] = false;
}
if (ioCardRxString.Contains("in17=1") == true)
{
arrGlobalZoneStatus[3] = true;
}
if (ioCardRxString.Contains("in17=0") == true)
{
arrGlobalZoneStatus[3] = false;
}
}
private void tmrCheckZoneStatus_Tick(object sender, EventArgs e)
{
if (arrGlobalZoneStatus[1] == true)
{
button10.BackColor = System.Drawing.Color.Red;
textLog(button10.Text + " was activated");
if (globalFullAlarmSet || globalNightAlarmSet || globalDoorsAlarmSet)
{
this.BeginInvoke(new EventHandler(delegate { checkAndActivateRelays(1); }));
}
}
if (arrGlobalZoneStatus[1] == false)
{
button10.BackColor = System.Drawing.Color.Gray;
}
if (arrGlobalZoneStatus[2] == true)
{
button11.BackColor = System.Drawing.Color.Red;
textLog(button11.Text + " was activated"); ;
if (globalFullAlarmSet || globalNightAlarmSet || globalDoorsAlarmSet)
{
this.BeginInvoke(new EventHandler(delegate { checkAndActivateRelays(2); }));
}
}
if (arrGlobalZoneStatus[2] == false)
{
button11.BackColor = System.Drawing.Color.Gray;
}
if (arrGlobalZoneStatus[3] == true)
{
button12.BackColor = System.Drawing.Color.Red;
textLog(button12.Text + " was activated");
if (globalFullAlarmSet || globalNightAlarmSet || globalDoorsAlarmSet)
{
this.BeginInvoke(new EventHandler(delegate { checkAndActivateRelays(3); }));
}
}
if (arrGlobalZoneStatus[3] == false)
{
button12.BackColor = System.Drawing.Color.Gray;
}
}
public void textLog(string logEntry)
{
textLines++;
try
{
if (this.txtLog.InvokeRequired)
{
ChangeTextCallback MethodCallback = new ChangeTextCallback(textLog);
this.Invoke(MethodCallback, new object[] { logEntry });
}
else
{
if (!logEntry.Contains("?"))
{
txtLog.Text = txtLog.Text + DateTime.Now + " >: " + logEntry + "\r\n";
txtLog.SelectionStart = txtLog.Text.Length;
txtLog.ScrollToCaret();
if (textLines > 3000)
{
txtLog.Clear();
textLines = 0;
textLog("Text log cleared");
}
System.IO.StreamWriter sw = new System.IO.StreamWriter(logFile, true);
try
{
sw.WriteLine(DateTime.Now + " >: " + logEntry);
}
catch (Exception ex)
{
//
}
sw.Close();
}
}
}
catch
{
//
}
}
最佳答案
我没有通读所有内容,但这应该会让您走上正确的道路:
SerialPort.DataReceived
事件在单独的线程上引发。如果您需要异步处理数据的接收,并在其上使用 GUI 执行某些操作,您可以执行以下操作:
private void DataReceivedHandler(object sender, SerialDataReceivedEventArgs e) {
var port = (SerialPort)sender;
string data = port.ReadExisting();
UpdateGui(data);
}
private void UpdateGui(string data) {
if (this.InvokeRequired) {
this.Invoke(new Action( d => UpdateGui(d) ));
return;
}
this.txtBox1.Text = data;
}
DataReceived
吗? ?听起来您(主机)正在启动与外部板的所有通信。如果是这种情况,那么我建议您改用同步(阻塞)读取:
1. Write the request out the port
2. Call read() with the expected number of bytes
3. Process the reply.
关于C# SerialPort DataReceived 事件未更新主 UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12240205/
我正在尝试将 WPF CodeBehid 事件(如 Event、Handler、EventSetter)转换为 MVVM 模式。我不允许使用 System.Windows.Controls,因为我使用
我可能误解了 Backbone 中的事件系统,但是当我尝试以下代码时什么也没有发生。当我向 Backbone.Events 扩展对象添加新属性时,它不应该触发某种更改、更新或重置事件吗?就像模型一样吗
我遇到了一个简单的问题,就是无法弄清楚为什么它不起作用。我有一个子组件“app-buttons”,其中我有一个输入字段,我想听,所以我可以根据输入值过滤列表。 如果我将输入放在我有列表的根组件中,一切
System.Timers.Timer 的 Elapsed 事件实际上与 System.Windows.Forms.Timer 的 Tick 事件相同吗? 在特定情况下使用其中一种比使用另一种有优势吗
嗨,这个 javascript 代码段是什么意思。(evt) 部分是如此令人困惑.. evt 不是 bool 值。这个怎么运作? function checkIt(evt) { evt
我正在使用jquery full calendar我试图在事件被删除时保存它。 $('calendar').fullCalendar ({
我有两个链接的鼠标事件: $('body > form').on("mousedown", function(e){ //Do stuff }).on("mouseup", function(
这是我的代码: $( '#Example' ).on( "keypress", function( keyEvent ) { if ( keyEvent.which != 44 ) {
我尝试了 dragOver 事件处理程序,但它没有正常工作。 我正在研究钢琴,我希望能够弹奏音符,即使那个键上没有发生鼠标按下。 是否有事件处理程序? 下面是我正在制作的钢琴的图片。 最佳答案 您应该
当悬停在相邻文本上时,我需要使隐藏按钮可见。这是通过 onMouseEnter 和 onMouseLeave 事件完成的。但是当点击另外的文本时,我需要使按钮完全可见并停止 onMouseLeave
我有ul标签内 div标签。我申请了mouseup事件 div标记和 click事件 ul标签。 问题 每当我点击 ul标签,然后都是 mouseup和 click事件被触发。 我想要的是当我点击 u
我是 Javascript 和 jQuery 的新手,所以我有一个非常愚蠢的疑问,请耐心等待 $(document).click(function () { alert("!"); v
我有一个邮政编码解析器,我正在使用 keyup 事件处理程序来跟踪输入长度何时达到 5,然后查询服务器以解析邮政编码。但是我想防止脚本被不必要地调用,所以我想知道是否有一种方法可以跟踪 keydown
使用事件 API,我有以下代码来发布带有事件照片的事件 $facebook = new Facebook(array( "appId" => "XXX", "se
首次加载 Microsoft Word 时,既不会触发 NewDocument 事件也不会触发 DocumentOpen 事件。当 Word 实例已打开并打开新文档或现有文档时,这些事件会正常触发。
我发现了很多相关问题(这里和其他地方),但还没有具体找到这个问题。 我正在尝试监听箭头键 (37-40) 的按键事件,但是当以特定顺序使用箭头键时,后续箭头不会生成“按键”事件。 例子: http:/
给定的 HTML: 和 JavaScript 的: var $test = $('#test'); $test.on('keydown', function(event) { if (eve
我是 Node.js 的新手,希望使用流运行程序。对于其他程序,我必须同时启动一个服务器(mongodb、redis 等),但我不知道我是否应该用这个运行一个服务器。请让我知道我哪里出了问题以及如何纠
我正在尝试使用 Swift 和 Cocoa 创建一个适用于 OS X 的应用程序。我希望应用程序能够响应关键事件,而不将焦点放在文本字段上/文本字段中。我在 Xcode 中创建了一个带有 Storyb
我有以下代码: (function(w,d,s,l,i){ w[l]=w[l]||[];w[l].push({
我是一名优秀的程序员,十分优秀!