public frmPpal() { InitializeComponent(); hilos = new LosHilos(); hilos.AvisoFin += this.MostrarMensajeFin; }
private void button1_Click(object sender, EventArgs e) { try { bool flag = true; if (this.textBox1.Text != String.Empty) { foreach (char caracter in this.textBox1.Text) { if (!char.IsNumber(caracter)) { MessageBox.Show("Ingrese solo numeros positivos."); flag = !flag; break; } } } if (flag) { this._hilos += 5; } } catch (CantidadInvalidaException exception) { MessageBox.Show(exception.Message); } catch (IOException exception) { MessageBox.Show(exception.Message); } catch (Exception exception) { MessageBox.Show(exception.Message); } }
public Form1() { InitializeComponent(); this.hilos = new LosHilos(); // this.hilos.AvisoFin += this.MostrarMensajeFin; //relaciono el evento: avisoFin con el metodo mostrarMensajeFin this.hilos.AvisoFin += new DelegadoHilos(this.MostrarMensajeFin); }
private void btnLanzar_Click(object sender, EventArgs e) { try { hilos += 1; } catch (CantidadInvalidaException ex) { MessageBox.Show(ex.Message); } }
private void btnLanzar_Click(object sender, EventArgs e) { try { this.hilos += 1; } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnLanzar_Click(object sender, EventArgs e) { try { this._hilos += 2; } catch (CantidadInvalidaException) { MessageBox.Show("La cantidad es menor a 1"); } }
private void btnLanzar_Click(object sender, EventArgs e) { try { hilos += 1; } catch (CantidadInvalidaException exception) { MessageBox.Show(exception.Message, "ERROR", MessageBoxButtons.OK); } }
private void btnLanzar_Click(object sender, EventArgs e) { try { //Pasa solo la cantidad porque el otro atributo hace referencia a LosHilos. hilos += 1; } catch (CantidadInvalidaException ex) { MessageBox.Show(ex.Message); } }
private void btnLanzar_Click(object sender, EventArgs e) { try { //agrego un hilo mas por cada vez que apreto el boton lanzar this.hilos += +1; } catch (CantidadInvalidaException) { MessageBox.Show("Cantidad Invalida"); } }
private void btnLanzar_Click(object sender, EventArgs e) { try { hilos = hilos + 1; } catch (Exception) { throw; } //Se cargara un hilo //mostrara error }
public Form1() { InitializeComponent(); this.hilos = new LosHilos(); this.hilos.AvisoFin += MostrarMensajeFin; }
private void formPpal_Load(object sender, EventArgs e) { this.hilos = new LosHilos(); this.hilos.AvisoFin += MostrarMensajeFin; }
public Form1() { InitializeComponent(); hilos = new LosHilos(); }
public frmPrincipal() { InitializeComponent(); hilos = new LosHilos(); hilos.eventoAvisar += MostrarMensajeFin; }
private void button1_Click(object sender, EventArgs e) { this._hilos += 1; }
private void Form1_Load(object sender, EventArgs e) { this._hilos = new LosHilos(); this._hilos.AvisoFin += this.MostrarMensajeFin; }