mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-12-15 00:26:23 +01:00
fixed csproj dependencies
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user