Example #1
0
 private void EditStudentButton_ItemClick(object sender, ItemClickEventArgs e)
 {
     Properties.Settings.Default.StdFormType = "edit";
     studentform stdadd = new studentform(this);
     stdadd.StartPosition = FormStartPosition.CenterParent;
     stdadd.Text = stdadd.Text + " [edit]";
     
     stdadd.ShowDialog();
 }