Skip to content

Commit

Permalink
Bugfix in ExportViewModel.
Browse files Browse the repository at this point in the history
  • Loading branch information
hcoona committed Dec 17, 2019
1 parent c021928 commit 9e1ac9f
Showing 1 changed file with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,21 @@ public ViewModelContext ViewModelContext
public DateTime StartDateTime
{
get => this.startDateTime;
set => this.SetProperty(ref this.startDateTime, value);
set
{
this.SetProperty(ref this.startDateTime, value);
this.ExportCommand.RaiseCanExecuteChanged();
}
}

public DateTime EndDateTime
{
get => this.endDateTime;
set => this.SetProperty(ref this.endDateTime, value);
set
{
this.SetProperty(ref this.endDateTime, value);
this.ExportCommand.RaiseCanExecuteChanged();
}
}

public TimeSpan SelectedTimeSpan
Expand Down

0 comments on commit 9e1ac9f

Please sign in to comment.