File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
src/c#/GeneralUpdate.PacketTool/Platforms/Windows Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ using Microsoft . UI . Xaml ;
2+
3+ // To learn more about WinUI, the WinUI project structure,
4+ // and more about our project templates, see: http://aka.ms/winui-project-info.
5+
6+ namespace GeneralUpdate . PacketTool . WinUI
7+ {
8+ /// <summary>
9+ /// Provides application-specific behavior to supplement the default Application class.
10+ /// </summary>
11+ public partial class App : MauiWinUIApplication
12+ {
13+ /// <summary>
14+ /// Initializes the singleton application object. This is the first line of authored code
15+ /// executed, and as such is the logical equivalent of main() or WinMain().
16+ /// </summary>
17+ public App ( )
18+ {
19+ this . InitializeComponent ( ) ;
20+ }
21+
22+ protected override MauiApp CreateMauiApp ( ) => MauiProgram . CreateMauiApp ( ) ;
23+ }
24+ }
You can’t perform that action at this time.
0 commit comments