// Copyright (c) 2017 schick Informatik // Description: Startbild mit Ladeinformationen // using System; using System.Windows; namespace ENI2 { /// /// Interaction logic for SplashScreenWindow.xaml /// public partial class SplashScreenWindow : Window { public SplashScreenWindow() { InitializeComponent(); } public void ShowMessage(string message) { Dispatcher.Invoke((Action)delegate () { this.labelStartupInfo.Content = message; }); } public void LoadComplete() { Dispatcher.InvokeShutdown(); } } }