Vorrei interrompere il mio dispatcher che è stato avviato nella main(), quando l'utente fa clic su un pulsante.Come posso uscire (arrestare) il mio Dispatcher?
private void button_start_Click(object sender, RoutedEventArgs e)
{
...
Camera.EventFrame -= onFrameEventFocusCam; //unsubscribe event
while (!Dispatcher.HasShutdownStarted)
{
// test if Dispatcher started shutdown --> ok, it does but never finishs...!
}
...
}
private void onFrameEventFocusCam(object sender, EventArgs e)
{
...
Dispatcher.Invoke(new Action(() =>
{
// Convert bitmap to WPF-Image
var bmp = new Bitmap(bitmap);
var hBitmap = bmp.GetHbitmap();
System.Windows.Media.ImageSource wpfBitmap = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
hBitmap, IntPtr.Zero, Int32Rect.Empty, BitmapSizeOptions.FromEmptyOptions());
image_fokus.Source = wpfBitmap;
image_fokus.Stretch = System.Windows.Media.Stretch.UniformToFill;
DeleteObject(hBitmap);
bitmap.Dispose();
}));
GC.Collect();
}
Quando eseguo questo codice ottengo seguente messaggio di errore mentre è fermato nella onFrameEventFocusCam
:
Error-Message: Thread was interrupted from a waiting state.
Se si interrompe il dispatcher thread principale, l'applicazione smetterà di funzionare ... è davvero quello che vuoi? Cosa stai cercando di fare esattamente? –
Non mi piace interrompere il thread principale. Quello che sto cercando di fare è fermare una macchina fotografica per mostrare un'immagine dal vivo. L'applicazione dovrebbe ancora funzionare. – Norick