#0060: 增加扫描模式模块功能;
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Prism.Mvvm;
|
||||
|
||||
namespace XP.Scan.ViewModels
|
||||
{
|
||||
public class MainWindowViewModel : BindableBase
|
||||
{
|
||||
private string _title = "XplorePlane";
|
||||
|
||||
public string Title
|
||||
{
|
||||
get => _title;
|
||||
set => SetProperty(ref _title, value);
|
||||
}
|
||||
}
|
||||
|
||||
public class AcquisitionMode
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
|
||||
public override string ToString() => Name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user