26 lines
682 B
C#
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());
|
|
}
|
|
} |