MoS2/Framework/MECF.Framework.UI.Core/Control/GasFlow2.xaml.cs
hanqiangqiang cab224c9f9 1添加真值表XML配置
2添加实时气体流量显示界面,封装单独用户控件
3添加后台数据绑定,添加后台数据
4修改S02数据不显示问题
2026-08-25 14:49:11 +08:00

28 lines
766 B
C#

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
{
/// <summary>
/// GasFlow2.xaml 的交互逻辑
/// </summary>
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));
}
}