GARbro-mirror/ArcParameters.xaml.cs
2014-07-21 23:26:28 +04:00

23 lines
562 B
C#

using System.Windows;
namespace GARbro.GUI
{
/// <summary>
/// Interaction logic for ArcParameters.xaml
/// </summary>
public partial class ArcParametersDialog : Window
{
public ArcParametersDialog (UIElement widget, string notice)
{
InitializeComponent();
this.WidgetPane.Children.Add (widget);
this.Notice.Text = notice;
}
private void Button_Click (object sender, RoutedEventArgs e)
{
DialogResult = true;
}
}
}