mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-12-14 16:16:24 +01:00
updated nuget packages
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user