winform的一些小技巧

//进程延迟

System.Threading.Thread.Sleep(1010);

//确认对话框

DialogResult clo = MessageBox.Show("是否确定XXXXXXX", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
if (clo == DialogResult.Yes)
{///}


//窗体之间值传递

public class Class1
{
    public static string a;
    public static string getName
    {
        get { return a; }

        set { a = value; }
    }     
}
//调用
username = Form1.Class1.getName;

//textbox按回车登陆

private void textBox6_KeyDown(object sender, KeyEventArgs e)
{
    if (e.KeyCode == Keys.Enter)//如果输入的是回车键  
    {
        this.button1_Click(sender, e);//触发button事件  
    }
}

//页面所有控件不可用

foreach (Control cl in this.Controls)
{
    cl.Enabled = true;
}



你可能感兴趣的:(winform的一些小技巧)