updated nuget packages

This commit is contained in:
2020-08-28 20:55:08 +02:00
parent 1cf692547f
commit 8cd47a0252
4 changed files with 21 additions and 23 deletions

View File

@@ -57,19 +57,19 @@ namespace ModernWpfPlayground
public Visibility VisibilityEnumTest
{
get => GetProperty<Visibility>();
get => GetProperty(Visibility.Visible);
set => SetProperty(value);
}
public double SliderTest
{
get => GetProperty<double>(100);
get => GetProperty(100D);
set => SetProperty(value);
}
public double ValidationTest
{
get => GetProperty<double>();
get => GetProperty(0D);
set => SetProperty(value);
}