mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-23 13:45:34 +08:00
23 lines
540 B
C#
23 lines
540 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;
|
|
}
|
|
}
|
|
}
|