示例#1
0
文件: Main.cs 项目: m13253/xwt
		public static void Main (string[] args)
		{
			Application.Initialize (ToolkitType.Gtk);

			var win = new AppWindow ();
			win.Show ();
			win.Width = 200;

			Application.Run ();
		}
示例#2
0
        public static void Main(string[] args)
        {
            Application.Initialize(ToolkitType.Gtk);

            var win = new AppWindow();

            win.Show();
            win.Width = 200;

            Application.Run();
        }