?????????? this.Location = new System.Drawing.Point(100, 100);
??????????? this.Cursor = System.Windows.Forms.Cursors.Hand;
??????????? // 定義在窗體上,光標顯示為手形
??????????? this.Text = "透明的WinForm窗體!";
??????????? // 定義窗體的標題名稱
??????????? this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
??????????? // 定義窗體的開始顯示位置是屏幕的中間
??????????? this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
??????????? // 窗體的邊界是Fixed3D類型
??????????? this.ForeColor = System.Drawing.SystemColors.Desktop;
??????????? //以桌面的前景色作為窗體的前景色
??????????? this.Font = new System.Drawing.Font("宋體", 9);
??????????? // 定義字體類型,大小
??????????? this.BackColor = System.Drawing.Color.Blue;
??????????? // 定義背景色為藍色
??????????? this.ClientSize = new System.Drawing.Size(440, 170);
??????????? // 設置窗體的大小
??????????? // Opacity屬性設立窗體的透明程度,只對于視窗2000有效
??????????? this.Opacity = 0.61;