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