-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathTestViewWpf2.cs
More file actions
22 lines (19 loc) · 731 Bytes
/
TestViewWpf2.cs
File metadata and controls
22 lines (19 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2024 .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.
using System.Windows;
using ReactiveUI.SourceGenerators;
namespace SGReactiveUI.SourceGenerators.Test;
/// <summary>
/// TestViewWpf2.
/// </summary>
/// <seealso cref="System.Windows.Window" />
[IViewFor("TestViewModel2<int>")]
public partial class TestViewWpf2 : Window
{
/// <summary>
/// Initializes a new instance of the <see cref="TestViewWpf2"/> class.
/// </summary>
public TestViewWpf2() => ViewModel = new();
}