GARbro-mirror/GUI/ArcParameters.xaml.cs

23 lines
540 B
C#
Raw Normal View History

2016-01-07 23:06:08 +08:00
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;
}
}
}