Exemplo n.º 1
0
 public Addition(WhichForm whichForm, Displayer displayer)
 {
     InitializeComponent();
     this.whichForm = whichForm;
     this.displayer = displayer;
     Design();
 }
Exemplo n.º 2
0
 public Editing(WhichForm whichForm, string id, Displayer displayer)
 {
     InitializeComponent();
     this.whichForm = whichForm;
     this.displayer = displayer;
     Design();
     IdCB.DropDownStyle = ComboBoxStyle.Simple;
     IdCB.Text          = id;
     IdCB.Enabled       = false;
 }
Exemplo n.º 3
0
 private void button5_Click(object sender, EventArgs e)
 {
     displayer = new Displayer(WhichForm.Defendant);
     displayer.ShowDialog();
 }
Exemplo n.º 4
0
 private void button4_Click(object sender, EventArgs e)
 {
     displayer = new Displayer(WhichForm.Plaintiff);
     displayer.ShowDialog();
 }
Exemplo n.º 5
0
 private void button3_Click(object sender, EventArgs e)
 {
     displayer = new Displayer(WhichForm.Judge);
     displayer.ShowDialog();
 }