-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathApp.xaml.cs
More file actions
21 lines (18 loc) · 748 Bytes
/
App.xaml.cs
File metadata and controls
21 lines (18 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright (c) 2025 .NET Foundation and Contributors. All rights reserved.
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for full license information.
namespace ReactiveUI.Samples.Maui;
/// <summary>
/// MAUI application shell that creates the initial navigation window.
/// </summary>
public partial class App : Application
{
/// <summary>
/// Initializes a new instance of the <see cref="App"/> class.
/// </summary>
public App() => InitializeComponent();
/// <inheritdoc/>
protected override Window CreateWindow(IActivationState? activationState) =>
new(new AppShell());
}