1234567891011121314151617181920212223242526272829303132 |
- using System.Windows.Controls;
- namespace WWPipeLine.WPF
- {
- /// <summary>
- /// Properties.xaml 的交互逻辑
- /// </summary>
- public partial class PropertiesEx : UserControl
- {
- public PropertiesEx(string name,string value)
- {
- InitializeComponent();
- m_PropName.Content = name;
- m_PropValue.Content = value;
- }
- public Label PropName
- {
- get
- {
- return this.m_PropName;
- }
- }
- public Label PropValue
- {
- get
- {
- return this.m_PropValue;
- }
- }
- }
- }
|