Exemple #1
0
 protected void EditBoxLabel( Bean.BoxBean bean )
 {
     FormBoxLabel form = new FormBoxLabel(bean);
     form.OnRefreshData += form_OnRefreshData;
     form.StartPosition = FormStartPosition.CenterParent;
     form.ShowDialog();
 }
Exemple #2
0
 private void btnAdd_Click(object sender, EventArgs e)
 {
     FormBoxLabel form = new FormBoxLabel( null );
     form.StartPosition = FormStartPosition.CenterParent;
     form.OnRefreshData += form_OnRefreshData;
     form.ShowDialog();
 }