16 lines
362 B
C#
16 lines
362 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
|
|
// To learn more about WinUI, the WinUI project structure,
|
|
// and more about our project templates, see: http://aka.ms/winui-project-info.
|
|
|
|
namespace Lattice.IDE.Controls
|
|
{
|
|
public sealed partial class EditorView : UserControl
|
|
{
|
|
public EditorView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|