mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-12-14 16:16:24 +01:00
nice features
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
using ModernWpf.Controls;
|
||||
using System.Windows;
|
||||
|
||||
namespace ModernWpfPlayground
|
||||
{
|
||||
public partial class ContentDialogExample : ContentDialog
|
||||
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();
|
||||
|
||||
Reference in New Issue
Block a user