moved GUI project to a subdirectory.

This commit is contained in:
morkt
2016-01-07 19:06:08 +04:00
parent f85cf12fcd
commit 01153ad1a8
60 changed files with 7334 additions and 7340 deletions

22
GUI/ArcParameters.xaml.cs Normal file
View 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;
}
}
}