12345678910111213141516171819202122232425262728293031 |
- using NEIntelligentControl2.Windows;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Navigation;
- using System.Windows.Shapes;
- namespace NEIntelligentControl2.Views.Windturbine
- {
- /// <summary>
- /// 参数对比标签
- /// </summary>
- public partial class ComparisonTag : UserControl
- {
- public static readonly DependencyProperty InfoProperty = DependencyProperty.Register("Info", typeof(ComparisonTagInfo), typeof(ComparisonTag));
- public ComparisonTagInfo Info { get { return (ComparisonTagInfo)GetValue(InfoProperty); } set { SetValue(InfoProperty, value); } }
- public ComparisonTag()
- {
- InitializeComponent();
- }
- }
- }
|