SIC-12/App/SicUI/Controls/Mainframe/M2C4EFEMView3.xaml.cs

56 lines
1.8 KiB
C#

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 SicUI.Controls.M2C4Parts
{
/// <summary>
/// M2C4EFEMView3.xaml 的交互逻辑
/// </summary>
public partial class M2C4EFEMView3 : UserControl
{
public M2C4EFEMView3()
{
InitializeComponent();
}
public bool IsPM1DoorOpen
{
get { return (bool)GetValue(IsPM1DoorOpenProperty); }
set { SetValue(IsPM1DoorOpenProperty, value); }
}
public static readonly DependencyProperty IsPM1DoorOpenProperty =
DependencyProperty.Register("IsPM1DoorOpen", typeof(bool), typeof(M2C4EFEMView3), new FrameworkPropertyMetadata(false));
public bool IsPM2DoorOpen
{
get { return (bool)GetValue(IsPM2DoorOpenProperty); }
set { SetValue(IsPM2DoorOpenProperty, value); }
}
public static readonly DependencyProperty IsPM2DoorOpenProperty =
DependencyProperty.Register("IsPM2DoorOpen", typeof(bool), typeof(M2C4EFEMView3), new FrameworkPropertyMetadata(false));
public bool IsLLDoorOpen
{
get { return (bool)GetValue(IsLLDoorOpenProperty); }
set { SetValue(IsLLDoorOpenProperty, value); }
}
public static readonly DependencyProperty IsLLDoorOpenProperty =
DependencyProperty.Register("IsLLDoorOpen", typeof(bool), typeof(M2C4EFEMView3), new FrameworkPropertyMetadata(false));
}
}