using MECF.Framework.Common.Aitex.Core.Common.DeviceData; using System; using System.Linq; using System.Windows; using System.Windows.Controls; namespace Aitex.Core.UI.Control { /// /// GasFlow2.xaml 的交互逻辑 /// public partial class GasFlow2 : UserControl { public GasFlow2() { InitializeComponent(); } public GasFlowData FlowData { get => (GasFlowData)GetValue(FlowDataProperty); set => SetValue(FlowDataProperty, value); } public static readonly DependencyProperty FlowDataProperty = DependencyProperty.Register(nameof(FlowData), typeof(GasFlowData), typeof(GasFlow2), new PropertyMetadata(null)); } }