提交了仪表的模型

This commit is contained in:
2024-07-28 22:59:11 +08:00
parent c9f4e88e04
commit a76546ebe6
59 changed files with 3273 additions and 586 deletions

View File

@@ -0,0 +1,33 @@
using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models
{
public class ComboBoxModel:BindableBase
{
private string key;
/// <summary>
/// Key值
/// </summary>
public string Key
{
get { return key; }
set { key = value; RaisePropertyChanged(); }
}
private string text;
/// <summary>
/// Text值
/// </summary>
public string Text
{
get { return text; }
set { text = value; RaisePropertyChanged(); }
}
}
}