[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();
}
Thanks!
]]>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.
]]>honestly, I’m not familiar enough with GTK# full data binding to comment on the details. I’ll look into it.
]]>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.
]]>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.
]]>