Comments on: GTK# in Visual Studio 2008 on Vista x64 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/ babblings of a computer loving fool Mon, 21 Nov 2016 19:37:12 +0000 hourly 1 https://wordpress.org/?v=4.7.2 By: Nusret ÖNEN http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-31158 Thu, 12 Nov 2009 06:41:56 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-31158 thank you for sharing

[STAThread]
static void Main()
{
Application.Init();
Window myWin = new Window(“My first GTK# Application! “);
myWin.Resize(200, 200);
myWin.Destroyed += new EventHandler(myWin_Destroyed);
Label myLabel = new Label();
myLabel.Text = “Hello World!!!!”;
myWin.Add(myLabel);
myWin.ShowAll();
Application.Run();
}
static void myWin_Destroyed(object sender, EventArgs e)
{
Application.Quit();
}

]]>
By: shea http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-31104 Mon, 10 Aug 2009 21:28:29 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-31104 I ended up doing this and it works quite well. I also reference glade-sharp and use the glade-3 UI editor.

Thanks!

]]>
By: jrwren http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-31052 Tue, 16 Jun 2009 12:47:23 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-31052 @lxx

No, the visual form designer is for windows forms.

It turns out that even in winforms, the form designer becomes far less useful once you want to do certain things. I stopped using the forms designer because it is too slow, and I can get more done without it.

nice blog BTW, I wish I read Russian.

]]>
By: jrwren http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-31051 Tue, 16 Jun 2009 12:40:06 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-31051 I’m not familiar with linq to mysql, but it should work fine with nhibernate based objects or dblinq objects.

honestly, I’m not familiar enough with GTK# full data binding to comment on the details. I’ll look into it.

]]>
By: Konstantin http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-31050 Tue, 16 Jun 2009 09:09:21 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-31050 Hi Jay,
what I i ment in my post was the ability to use full data binding using linq to mysql not MSsql altogether with GTK# without mono . I am not quite sure if you can do that yet!

]]>
By: lxx http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-31045 Sun, 14 Jun 2009 17:34:34 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-31045 Does visual form designer works with gtk#?

]]>
By: Carlos http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-30908 Wed, 24 Dec 2008 11:17:28 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-30908 Great post Jay!
The bad point is that you loose the Monodevelop’s Stetic designer which is the best designer to me. But is good to know that the posibility is there.
I am still working on DesktopRails to offer Gtk#/Windows.Forms/WPF portability.
Cheers mate

]]>
By: David Pierce http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-30904 Thu, 04 Dec 2008 16:29:02 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-30904 thanks jay.

]]>
By: jrwren http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-30902 Thu, 04 Dec 2008 15:33:27 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-30902 @Konstantin

What specifically do you mean “build in linq using gtk” You can use GTK# and all of the features of Linq in both Windows .NET and in Linux.

]]>
By: jrwren http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/comment-page-1/#comment-30901 Thu, 04 Dec 2008 15:32:34 +0000 http://jrwren.wrenfam.com/blog/2008/11/01/gtk-in-visual-studio-2008-on-vista-x64/#comment-30901 @dave pease

I won’t throw a shoe at you. I am an old linux guy, but I do like Visual Studio, so I want to write apps which target both Linux AND Windows and GTK# seems to be the best way to do that. If you don’t care about linux, then you can safely ignore this. You aren’t missing anything.

]]>