feat: initialize WinUI 3 WebView migration

This commit is contained in:
2026-07-10 04:32:15 +09:00
commit 5aa90e4aaa
103 changed files with 10903 additions and 0 deletions

20
App.xaml.cs Normal file
View File

@@ -0,0 +1,20 @@
namespace MBN_STOCK_WEBVIEW;
/// <summary>
/// Application entry point for the packaged WinUI 3 desktop app.
/// </summary>
public partial class App : Application
{
private Window? _window;
public App()
{
InitializeComponent();
}
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
_window = new MainWindow();
_window.Activate();
}
}