Exemplo n.º 1
0
 //设置
 private void navBarSetForm_LinkClicked(object sender, NavBarLinkEventArgs e)
 {
     using (SetForm SetForm = new SetForm())
     {
         SetForm.ShowDialog();
     }
 }
Exemplo n.º 2
0
 private void labelControl3_Click(object sender, EventArgs e)
 {
     using (var sf = new SetForm())
     {
         sf.ShowDialog();
     }
 }
Exemplo n.º 3
0
 //设置
 private void pictureBox1_Click(object sender, EventArgs e)
 {
     using (var setform = new SetForm())
     {
         setform.ShowDialog();
     }
 }
Exemplo n.º 4
0
 private void navBarItem7_LinkClicked(object sender, DevExpress.XtraNavBar.NavBarLinkEventArgs e)
 {
     using (SetForm setForm = new SetForm())
     {
         setForm.ShowDialog();
     }
 }
Exemplo n.º 5
0
 private void barSetup_ItemClick(object sender, ItemClickEventArgs e)
 {
     using (SetForm SetForm = new SetForm())
     {
         SetForm.ShowDialog();
     }
 }
Exemplo n.º 6
0
        private void labelControl3_Click(object sender, EventArgs e)
        {
            SetForm sf = new SetForm();

            sf.ShowDialog();
        }