常用 到的一些 form 属性

     this.MinimizeBox = false;
            this.MaximizeBox = false;


 this.Cursor = Cursors.WaitCursor;//让光标等待状态.
            this.Cursor = Cursors.Default;//恢复默认

        //窗体激活时代码应该写在这儿
        private void Form1_Activated(object sender, System.EventArgs e)
        {
            iTag = (int)this.Tag;
            OpenData(iTag);

        }

//------------开始即最大化---------------------------------
            this.WindowState = FormWindowState.Maximized;


//-----------------C# 如何给Winform的button等控件添加快捷键 ----------
快捷键(在网摘文档中有相关网页)
在WinForm中设置要使用组合键的窗体的KeyPreview(向窗体注册键盘事件)属性为True;
        private void F_FillInBlank_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.S && e.Control)
            {
                btn_Save.PerformClick();// equal the save button 
            }
        }
e.KeyCode = Keys.Tab

//-------------------------设置FORM 的尺寸和透明度------------------------------------------------
            // Set the opacity to 75%.
            this.Opacity = .75;
           // form2.Opacity = .75;
            // Size the form to be 300 pixels in height and width.
            this.Size = new Size(300, 300);
//-----------当两个按钮一样的事件时-------------------------------------------------
 // equal the save button 
btn_Save.PerformClick();

//设置FORM 的尺寸固定
        MaximizeBox属性置false 
        FormBorderStyle属性FixedSingle

你可能感兴趣的:(常用 到的一些 form 属性)