11 lines
171 B
C#
11 lines
171 B
C#
|
using System.Windows.Controls;
|
|||
|
|
|||
|
namespace WPF_26_MVVM.Views;
|
|||
|
|
|||
|
public partial class ViewA : UserControl
|
|||
|
{
|
|||
|
public ViewA()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
}
|