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"; }));