alguien sabe como ejecutar una funcion o proceso al minimizar el formulario en C#
Publicado por rodrigo (2 intervenciones) el 06/10/2017 17:08:00
1
2
3
SegundoPlano = new BackgroundWorker();
SegundoPlano.DoWork += enOtroHiloHuella;
SegundoPlano.RunWorkerAsync();
este es el void que quiere que se ejecute al minimizar lo eh intentado hacer un con un hilo con el BackgroundWorker y thread y no funcionan alguien sabe otra manera de hacer esto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public void IniciarCaptura()
{
if (Captura != null)
{
try
{
Captura.StartCapture();
}
catch (Exception t)
{
MessageBox.Show("NO SE PUDO INICIAR LA CAPTURA" + t.ToString());
}
}
}
Valora esta pregunta
0