2025-07-11 09:20:23 +08:00
|
|
|
|
using Caliburn.Micro;
|
|
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel.Composition;
|
|
|
|
|
|
|
2025-07-31 20:12:24 +08:00
|
|
|
|
namespace AntDesignWPFDemo.ViewModels
|
2025-07-11 09:20:23 +08:00
|
|
|
|
{
|
|
|
|
|
|
[Export(typeof(IScreen))]
|
|
|
|
|
|
internal class SelectViewModel : Screen
|
|
|
|
|
|
{
|
|
|
|
|
|
public SelectViewModel()
|
|
|
|
|
|
{
|
|
|
|
|
|
DisplayName = "Select";
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|