我面临很多天的问题。我有一个线程监听来自其他系统的通知。每当我通过套接字收到通知时,我想使用 Infragistics 的 UltraDesktopAlert 控件在警报窗口中显示它。这个类库里没有winform。
请告诉我如何使用线程显示它。样本在这里
void tcpServerListenter_OnCommReceive(object sender, CommEventArgs e)
{
string xmlString = Encoding.UTF8.GetString((byte[])e.data);
try
{
XDocument xmlDoc = XDocument.Parse(xmlString);
var res = (from msg in xmlDoc.Descendants("consoleNotification")
select msg.Element("value").Value).FirstOrDefault();
this.notificationMsg = res;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
// here Alert window is not displaying.
ultraDesktopAlert1.Show("Notification", this.notificationMsg);
}
但是这段代码没有显示警告窗口。
我也检查了以下链接 How to update the GUI from another thread in C#?
但问题是我的类库中没有 Winform。每当我在套接字上收到通知时,我想显示警报窗口。
最简单的方法是保存 UI 线程的同步上下文并将 lambda 发送到 UI 线程...
在 UI 线程上,启动异步操作时/之前...
SynchronizationContext syncContext = SynchronizationContext.Current;
将其保存到执行 aSync 工作的类中,然后您希望发送您的代码以在保存的同步上下文中运行。
syncContext.Send((stateMsg) => ultraDesktopAlert1.Show("Notification", stateMsg), this.notificationMessage);
请注意,如果您需要从 UI 线程检索 Current SynchronizationContext,则无法从非 UI 线程获取 UI 线程同步上下文。
我是一名优秀的程序员,十分优秀!