我有一个后台线程来处理与外部服务的通信。每次后台线程收到一条消息时,我都想将其传递给UI线程进行进一步处理(显示给用户)。
目前我已经创建了一个线程安全消息队列,它在Timer.Tick中定期汇集并填充后台线程。但这种解决方案是次优的。
你知道如何使用消息泵将事件从后台线程传递到ui线程吗?
答案 0 :(得分:6)
您可以使用Control.Invoke并使用委托。委托将在创建控件的线程上执行。
答案 1 :(得分:4)
有一些技巧。
我发现这种winforms技术一直很容易使用,但请注意,您需要一些微妙的规则才能正确使用。我试图捕获一个正常的,有效的实现,正确处理我posted elsewhere on stackoverflow的代码段中的规则。
我不需要太多使用这种技术,所以我无法真正说出任何有意义的事情。但是,您应该知道它存在。我相信这是确保在特定线程的上下文中调用某些内容的有效方法,即使该线程不 ui线程。
如果您正在使用WPF,WPF控件通常派生自DispatcherObject
以提供Dispatcher对象。这是一种比Control.Invoke()
更强大的功能同步技术,但也更复杂。请务必仔细阅读文档。
答案 2 :(得分:0)
如果您的GUI线程已被阻止且未处理任何消息,您可以使用Application.DoEvents
强制GUI线程处理该线程上的所有等待消息。
要将消息提取到Control的主题,当然您可以使用Control.BeginInvoke
或Control.Invoke
方法,但请注意Control.Invoke
将阻止Control
的拥有主题目前正在阻止。
答案 3 :(得分:0)
您也可以在WindowsBase.dll中使用WPF Dispatcher(类Dispatcher)。
答案 4 :(得分:0)
以下是在WPF中使用Dispacther对象和MSMQ的示例。
背后的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Messaging;
namespace MSMQGui
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
private string queueName = @".\private$\MyFunWithMSMQ";
private MessageQueue queue = null;
public MainWindow()
{
InitializeComponent();
if (!MessageQueue.Exists(queueName))
MessageQueue.Create(queueName,false);
queue = new MessageQueue(queueName);
queue.ReceiveCompleted += receiveCompleted;
}
private void btnAddMessage_Click(object sender, RoutedEventArgs e)
{
string message = txtMessage.Text;
txtMessage.Text = String.Empty;
queue.Send(message);
MessageBox.Show("Message :" + message + " sent");
}
private void Populate(object sender, RoutedEventArgs e)
{
try
{
queue.BeginReceive(TimeSpan.FromSeconds(1)) ;
}
catch (MessageQueueException)
{
MessageBox.Show("No message available");
}
}
private void receiveCompleted(object source, ReceiveCompletedEventArgs e)
{
try
{
var message=queue.EndReceive(e.AsyncResult);
Action<string> addMessage= (string msg) => {
ListViewItem item = new ListViewItem();
item.Content = msg;
lsvMessages.Items.Add(item);
};
this.Dispatcher.Invoke(addMessage, message.Body as string);
}
catch (MessageQueueException)
{
MessageBox.Show("No message available");
}
}
}
}
XAML:
<Window x:Class="MSMQGui.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"></ColumnDefinition>
<ColumnDefinition Width="3*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*"></RowDefinition>
<RowDefinition Height="9*"></RowDefinition>
<RowDefinition Height="1*"></RowDefinition>
</Grid.RowDefinitions>
<!-- First row -->
<Label x:Name="lblMessage"
Content="Message:"
HorizontalAlignment="Stretch"
VerticalAlignment="Top"
HorizontalContentAlignment="Right"
Grid.Column="0" Grid.Row="0"
></Label>
<StackPanel Grid.Column="1" Grid.Row="0" Orientation="Horizontal">
<TextBox x:Name="txtMessage" Width="200" HorizontalAlignment="Left" ></TextBox>
<Button x:Name="btnAddMessage" Content="Add message" Margin="5,0,0,0" Click="btnAddMessage_Click"></Button>
</StackPanel>
<!-- Second row -->
<ListView x:Name="lsvMessages" Grid.Column="0" Grid.ColumnSpan="2" Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="0,5,0,0">
</ListView>
<!-- Third row-->
<Button x:Name="btnPopulate" Grid.Column="1" Grid.Row="2" HorizontalAlignment="Right" Click="Populate" Content="Get messages from queque" Margin="5,0,0,0"></Button>
</Grid>
</Window>