mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
moved GUI project to a subdirectory.
This commit is contained in:
22
GUI/ArcParameters.xaml.cs
Normal file
22
GUI/ArcParameters.xaml.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user