28 lines
762 B
C#
28 lines
762 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>
|
|
/// GasFlow.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class GasFlow : UserControl
|
|
{
|
|
public GasFlow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public GasFlowData FlowData
|
|
{
|
|
get => (GasFlowData)GetValue(FlowDataProperty);
|
|
set => SetValue(FlowDataProperty, value);
|
|
}
|
|
public static readonly DependencyProperty FlowDataProperty =
|
|
DependencyProperty.Register(nameof(FlowData), typeof(GasFlowData), typeof(GasFlow), new PropertyMetadata(null));
|
|
|
|
}
|
|
} |