ModernWpfPlayground/App/ContentDialogExample.xaml.cs
2021-10-27 22:56:36 +02:00

20 lines
556 B
C#

namespace ModernWpfPlayground
{
public partial class ContentDialogExample
{
public static readonly DependencyProperty MessageProperty = DependencyProperty.Register(
"Message", typeof(string), typeof(ContentDialogExample), new PropertyMetadata(default(string)));
public string? Message
{
get => (string?) GetValue(MessageProperty);
set => SetValue(MessageProperty, value);
}
public ContentDialogExample()
{
InitializeComponent();
}
}
}