using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using OpenSEMI.ClientBase; namespace Venus_Themes.UserControls { /// /// EFEM.xaml 的交互逻辑 /// public partial class EFEM : UserControl { public EFEM() { InitializeComponent(); } public static readonly DependencyProperty Aligner1WaferProperty = DependencyProperty.Register( "Aligner1Wafer", typeof(WaferInfo), typeof(EFEM)); public WaferInfo Aligner1Wafer { get => (WaferInfo)GetValue(Aligner1WaferProperty); set => SetValue(Aligner1WaferProperty, value); } } }