C# WPF Dispatcher.Invoke的用法(解决其他类中控制窗口线程的控件出错的问题)

时间:2022-02-24 04:25:04

WPF中每个xaml文件都有一个.cs文件进行后台操作

但是有的时候,我想在其他类操作这个窗口的某个控件,直接通过类对象进行操作会出错(不考虑Binding)

如下代码:

<ListBox x:Name ="listBox" HorizontalAlignment="Left" Height="100" Margin="37,77,0,0" VerticalAlignment="Top" Width="100">
            <ListBoxItem x:Name ="ListBoxItem1" Content="ListBoxItem"/>
            <ListBoxItem x:Name ="ListBoxItem2" Content="ListBoxItem"/>
            <ListBoxItem x:Name ="ListBoxItem3" Content="ListBoxItem"/>
</ListBox>

在其对应的.cs文件中操作ListBoxItem1很简单,直接进行操作:

 this.ListBoxItem1.Content = "item1"; 

其他类中操作就得用到Invoke了:

// m_Window 为上面窗口类的实例化对象
m_Window.ListBoxItem1.Dispatcher.Invoke(new Action(delegate
{
    m_Window.ListBoxItem1.Content = "item1";
}));