/
CodeStacer
/
SimpleDictionaryEnglishApp
Обзор
Документация
Войти
/
CodeStacer
/
SimpleDictionaryEnglishApp
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Platforms/Windows/App.xaml.cs
25 строк
800 B
Durashca
Initial commit: English dictionary
26 июн 2026, 11:18
26 июн 2026, 11:18
734b21a
Код
Авторство
О чём код?
using Microsoft.UI.Xaml; // To learn more about WinUI, the WinUI project structure, // and more about our project templates, see: http://aka.ms/winui-project-info. namespace SimpleDictionaryEnglish.WinUI { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : MauiWinUIApplication { /// <summary> /// Initializes the singleton application object. This is the first line of authored code /// executed, and as such is the logical equivalent of main() or WinMain(). /// </summary> public App() { this.InitializeComponent(); } protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); } }