33 lines
624 B
C#
33 lines
624 B
C#
using System;
|
|
using System.Windows;
|
|
using System.Windows.Threading;
|
|
|
|
namespace BeWo.View
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für ConfirmDemoDialog.xaml
|
|
/// </summary>
|
|
public partial class MessageDialog : Window
|
|
{
|
|
public MessageDialog()
|
|
{
|
|
InitializeComponent();
|
|
|
|
|
|
}
|
|
|
|
public String Message
|
|
{
|
|
get { return txtMessage.Text; }
|
|
set { txtMessage.Text = value; }
|
|
}
|
|
|
|
|
|
private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
//DialogResult = true;
|
|
Close();
|
|
}
|
|
}
|
|
}
|