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