I18NCommander/I18N Commander/UI MAUI/App.xaml.cs

11 lines
160 B
C#
Raw Normal View History

2022-08-06 21:48:23 +00:00
namespace UI_MAUI;
public partial class App : Application
{
2022-08-08 19:18:39 +00:00
public App()
{
this.InitializeComponent();
this.MainPage = new MainPage();
}
}