12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- namespace OpenSEMI.ClientBase.Handlers
- {
- public class State : DependencyObject
- {
- public static DependencyProperty DisplayValueProperty = DependencyProperty.Register("DisplayValue", typeof(string), typeof(State));
- public string Key { get; set; }
- public string Name { get; set; }
- public string DisplayValue
- {
- get
- {
- return (string)GetValue(DisplayValueProperty);
- }
- set
- {
- SetValue(DisplayValueProperty, value);
- }
- }
- }
- }
|