diff --git a/BMGEditor/BMGEditor.csproj b/BMGEditor/BMGEditor.csproj index e5b7a5e..1eaea6c 100644 --- a/BMGEditor/BMGEditor.csproj +++ b/BMGEditor/BMGEditor.csproj @@ -16,6 +16,10 @@ + + + + True diff --git a/BMGEditor/Program.cs b/BMGEditor/Program.cs index 928f497..3c542ce 100644 --- a/BMGEditor/Program.cs +++ b/BMGEditor/Program.cs @@ -3,6 +3,8 @@ using System.Windows.Forms; using System.Net.Http; using System.IO; +using Gtk; + namespace BMGEditor { public static class Variables @@ -23,9 +25,16 @@ namespace BMGEditor [STAThread] static void Main() { - ApplicationConfiguration.Initialize(); + //ApplicationConfiguration.Initialize(); Bcsv.PopulateHashtable(); - Application.Run(new BMGEditForm()); + //Application.Run(new BMGEditForm()); + + Gtk.Application.Init(); + Window windo = new Window("GTKSharp test"); + windo.Resize(200, 200); + + windo.ShowAll(); + Gtk.Application.Run(); } static readonly HttpClient wrClient = new HttpClient();