fixed csproj dependencies

This commit is contained in:
2021-01-01 22:38:09 +01:00
parent ff3ec4d9e6
commit 90b24e547d
8 changed files with 17 additions and 20 deletions

View File

@@ -7,9 +7,9 @@ namespace ModernWpfPlayground
public static readonly DependencyProperty MessageProperty = DependencyProperty.Register(
"Message", typeof(string), typeof(ContentDialogExample), new PropertyMetadata(default(string)));
public string Message
public string? Message
{
get => (string) GetValue(MessageProperty);
get => (string?) GetValue(MessageProperty);
set => SetValue(MessageProperty, value);
}