mono 开发 C# 程序,运行时状态栏消失
Tofloor
poster avatar
jouyouyun
deepin
2013-03-27 20:49
Author
使用 mono 开发 C# 程序,运行时屏幕下方的状态栏消失,终止程序后,状态栏还是没出现。
Reply Favorite View the author
All Replies
snyh1010
deepin
2013-03-27 21:06
#1
请给出具体代码以便我们定位具体问题是什么。 谢谢
Reply View the author
jouyouyun
deepin
2013-03-27 21:12
#2
  1. using System;
  2. using System.Windows.Forms;
  3. namespace HelloClickWorld {       
  4.         public class Hello : Form {               
  5.                 public static void Main (string[] args) {                       
  6.                         Application.Run (new Hello ());                       
  7.                 }
  8.                
  9.                 public Hello ()                       
  10.                 {                       
  11.                         Button button = new Button ();                       
  12.                         button.Text = "Click...";                       
  13.                         button.Click += new EventHandler (Button_Click);                       
  14.                         Controls.Add (button);               
  15.                 }
  16.                
  17.                 private void Button_Click (object sender, EventArgs e)                       
  18.                 {               
  19.                         MessageBox.Show ("Hello Click World!");               
  20.                 }       
  21.         }
  22. }
Copy the Code
加了 using System.Windows.Forms; 后出错的
Reply View the author