Wo stellt man in WPF ein, mit welchem Windows Fenster
die Anwendung starten soll?
Lösung:
In der Datei: App.xaml im Header steht die Einstellung
StartupUri="MainWindow.xaml"
Hier kann man die
Einstellung ändrn
<Application x:Class="WebRobot_ComputerFutures.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WebRobot_ComputerFutures"
StartupUri="MainWindow.xaml">
|