Peter
Peter

Reputation: 38495

What is the equivalent of WinForms Control.Invoke in WPF?

What do i use instead of

Me.Invoke

when i use wpf?

Upvotes: 6

Views: 5236

Answers (1)

Graeme Bradbury
Graeme Bradbury

Reputation: 3721

You'll be using Dispatcher.Invoke in WPF.

MSDN Documentation

Upvotes: 11

Related Questions