Statistiques
| Branche: | Révision:

inraetemplate / INRAETemplate / Platforms / Windows / App.xaml.cs @ 7b67ff55

Historique | Voir | Annoter | Télécharger (722 octets)

1
using Microsoft.UI.Xaml;
2

    
3
// To learn more about WinUI, the WinUI project structure,
4
// and more about our project templates, see: http://aka.ms/winui-project-info.
5

    
6
namespace INRAETemplate.WinUI;
7

    
8
/// <summary>
9
/// Provides application-specific behavior to supplement the default Application class.
10
/// </summary>
11
public partial class App : MauiWinUIApplication
12
{
13
	/// <summary>
14
	/// Initializes the singleton application object.  This is the first line of authored code
15
	/// executed, and as such is the logical equivalent of main() or WinMain().
16
	/// </summary>
17
	public App()
18
	{
19
		this.InitializeComponent();
20
	}
21

    
22
	protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
23
}
24