Эй, я хочу сделать что-то вроде слайд-шоу, где вы запускаете приложение, и оно просматривает страницы, но программа не загружается.
public MainPage()
{
this.InitializeComponent();
while (true)
{
this.contentFrame.Navigate(typeof(Page1));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(werbungPage));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(ChartZielPage));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(mitarbeiteronlinePage));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(MomentaneKundenPage));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(OutlookKalenderPage));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(ChartServerPage));
Thread.Sleep(10000);
this.contentFrame.Navigate(typeof(ChartWheaterPage));
Thread.Sleep(10000);
}
}