17 lines
291 B
C#
17 lines
291 B
C#
|
|
using Caliburn.Micro;
|
|||
|
|
|
|||
|
|
using System;
|
|||
|
|
using System.ComponentModel.Composition;
|
|||
|
|
|
|||
|
|
namespace AntdWpfDemo.ViewModels
|
|||
|
|
{
|
|||
|
|
[Export(typeof(IScreen))]
|
|||
|
|
internal class InputViewModel : Screen
|
|||
|
|
{
|
|||
|
|
public InputViewModel()
|
|||
|
|
{
|
|||
|
|
DisplayName = "Input";
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|