When we create a new WPF C # project from Visual Studio , we get 4 main files "App.xaml","App.cs","MainWindow.xaml","MainWindow.cs"
Here the App.xamlfile is mainly used to store application related Resourcesin a single file, which should be present throughout the application.
But when creating a WPF Python project in Visual Studio, we get only 2 files "MainWindow.xaml" and "MainWindow.py"
I want to create 2 more file in my Python project "App.xaml" and "App.py" so that "App.xaml"I can easily define all styles of resource related to applications, templates.
Help plz !!
source
share