12345678910111213141516171819202122232425262728293031323334 |
- 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);
- }
- }
- }
- }
|