我希望在我的屏幕上显示当前时间,并使用MVVM模式在WPF屏幕中持续更新。
我在我的视图模型中编写此代码
// creating a property
private string _currentDateTime;
public string CurrentDateTime
{
get
{
return _currentDateTime;
}
set
{
if (value != _currentDateTime)
{
_currentDateTime = value;
this.RaisePropertyChanged(() => this.CurrentDateTime);
}
}
}
我写了这个方法
public string GetCurrentDateTime()
{
try
{
DispatcherTimer timer = new DispatcherTimer(new TimeSpan(0, 0, 1),
DispatcherPriority.Normal,
delegate
{
this.CurrentDateTime = DateTime.Now.ToString("HH:mm:ss");
},
this.Dispatcher);
return CurrentDateTime;
}
catch
{
return CurrentDateTime;
}
}
我将文本块与属性绑定,但由于this.CurrentDateTime
为null
,因此显示异常。
有什么建议吗?
答案 0 :(得分:2)
我不确定你对RaisePropertyChanged(() => this.CurrentDateTime)
的意图是什么。
如果要处理MVVM属性更改通知,那么此代码应该在您的VM中
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
那么你的设置应该是
set
{
if (value != _currentDateTime)
{
_currentDateTime = value;
OnPropertyChanged("CurrentDateTime");
}
}
要不断更新您的时间,请使用Timer
然后,您可以将间隔设置为1秒,并在每个计时器已过时事件设置CurrentDateTime
CurrentDateTime = DateTime.Now.ToString();
答案 1 :(得分:0)
我不确定为什么会出现这个问题,但是我实现了相同的功能,但代码略有变化。
我更改了GetCurrentDateTime
方法的try
块
try
{
DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = new TimeSpan(0, 0, 1);
dispatcherTimer.Start();
return CurrentDateTime;
}
并且我已经添加了一个新的计时器方法
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
// Updating the Label which displays the current second
this.CurrentDateTime = DateTime.Now.ToString(" HH:mm tt");
// Forcing the CommandManager to raise the RequerySuggested event
CommandManager.InvalidateRequerySuggested();
}
现在正在运作