我想在Label中显示时间。当窗口加载时,标签内容需要自动刷新。
我有一个带有Label控件的简单WPF窗口。如图所示
<Window x:Class="shoes.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300" Loaded="Window_Loaded">
<Grid>
<Label Margin="12" Name="lblSeconds"></Label>
<Button Margin="68,22,135,0" Name="button1" Height="24" VerticalAlignment="Top" Click="button1_Click">Button</Button>
</Grid>
</Window>
我查看了此处提供的代码:http://geekswithblogs.net/NewThingsILearned/archive/2008/08/25/refresh--update-wpf-controls.aspx
我修改为适合这种方式:
public partial class Window1 : Window
{
private static Action EmptyDelegate = delegate() { };
public Window1()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
if (IsLoaded)
{
LoopingMethod();
}
}
private void LoopingMethod()
{
while(true)
{
lblSeconds.Content = DateTime.Now.ToLongTimeString();
lblSeconds.Refresh();
Thread.Sleep(10);
}
}
}
public static class ExtensionMethods
{
private static Action EmptyDelegate = delegate() { };
public static void Refresh(this UIElement uiElement)
{
uiElement.Dispatcher.Invoke(DispatcherPriority.Render, EmptyDelegate);
}
}
我发现代码在通过button_Click事件触发时效果很好。我试图让代码运行像这样的Window_Loaded事件但是徒劳无功。窗口内容永远不会显示。
在加载窗口时,我可以做些什么来自动更新标签?
答案 0 :(得分:3)
这是完全正常的,因为OnLoad处理程序保持无限循环。该循环位于UI线程上,因此Window永远不会显示。
首先:将循环包装在Backgroundworker
中,使其在单独的线程上运行。
我还将循环代码分解为实现INotifyPropertyChanged
的单独对象,该对象使用time(字符串)公开属性,使该属性在其发生更改时引发PropertyChanged
事件(通过环)。当然,您仍需要在单独的线程上执行此操作(例如,使用BackgroundWorker
)。使用Binding将专用对象绑定到标签。
另一种策略是使用Timer
定期进行回调,你可以在那里更新标签。
答案 1 :(得分:3)
我会编写一个实现带有CurrentTime属性的INotifyPropertyChanged接口的类,并包含一个DispatcherTimer实例,该实例会定期引发PropertyChanged(“CurrentTime”)事件。
然后只需将此对象放入表单的资源中,并将标签的内容绑定到CurrentTime属性。
DispatcherTimer使用消息泵,因此不会涉及不必要的线程。
答案 2 :(得分:1)
使用DispatcherTimer
而不是使用无限循环