Files
Ho Ngoc Hai 76d75c753b Migrate
2026-05-23 18:37:02 +07:00

26 lines
682 B
C#

namespace AppClientBase;
/// <summary>
/// EN: Main application class.
/// VI: Lớp ứng dụng chính.
/// </summary>
public partial class App : Application
{
/// <summary>
/// EN: Constructor - initializes XAML components.
/// VI: Constructor - khởi tạo các thành phần XAML.
/// </summary>
public App()
{
InitializeComponent();
}
/// <summary>
/// EN: Creates the main window with AppShell.
/// VI: Tạo cửa sổ chính với AppShell.
/// </summary>
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
}
}