Skip to content

Instantly share code, notes, and snippets.

@blubbll
Created February 19, 2019 13:06
Show Gist options
  • Save blubbll/45e49928fe84ea4211cae3a96fdee549 to your computer and use it in GitHub Desktop.
Save blubbll/45e49928fe84ea4211cae3a96fdee549 to your computer and use it in GitHub Desktop.
C# dispatcher // access mainwindow from another class
MainWindow.main.Dispatcher.Invoke(new Action(delegate ()
{
var that = MainWindow.main.lblZuege;
that.Content = zuege;
}));
public static MainWindow main;
public MainWindow()
{
InitializeComponent();
main = this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment