45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
/*
|
|
* Copyright (c) 2019 ETH Zürich, Educational Development and Technology (LET)
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Timers;
|
|
|
|
namespace SafeExamBrowser.UserInterface.Desktop.ViewModels
|
|
{
|
|
class DateTimeViewModel : INotifyPropertyChanged
|
|
{
|
|
private Timer timer;
|
|
|
|
public string Date { get; private set; }
|
|
public string Time { get; private set; }
|
|
public string ToolTip { get; private set; }
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
public DateTimeViewModel()
|
|
{
|
|
timer = new Timer(1000);
|
|
timer.Elapsed += Timer_Elapsed;
|
|
timer.Start();
|
|
}
|
|
|
|
private void Timer_Elapsed(object sender, ElapsedEventArgs e)
|
|
{
|
|
var date = DateTime.Now;
|
|
|
|
Date = date.ToShortDateString();
|
|
Time = date.ToShortTimeString();
|
|
ToolTip = $"{date.ToLongDateString()} {date.ToLongTimeString()}";
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Time)));
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Date)));
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(ToolTip)));
|
|
}
|
|
}
|
|
}
|