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