Exemplo n.º 1
0
 private void Statistik_Shown(object sender, EventArgs e)
 {
     con = StatistikController.getInstance();
     con.set_statistik_form(this);
     con.calculate_histogram(statistikPictureBox);
     con.draw_histogram(statistikPictureBox, this, Config.histogram_canal.GREY);
     all_channel_radio.Select();
 }
Exemplo n.º 2
0
 private void Statistik_Shown(object sender, EventArgs e)
 {
     con = StatistikController.getInstance();
     con.set_statistik_form(this);
     con.calculate_histogram(statistikPictureBox);
     con.draw_histogram(statistikPictureBox, this, Config.histogram_canal.GREY);
     all_channel_radio.Select();
 }
Exemplo n.º 3
0
 private void statistikRefreshButton_Click(object sender, EventArgs e)
 {
     con.calculate_histogram(statistikPictureBox);
     con.draw_histogram(statistikPictureBox, this, radio_button);
 }