using System.Windows; using Aitex.Core.Common; using Bolt.Toolkit.Wpf.Data; using MECF.Framework.Common.Equipment; using VirgoUI.Controls.Parts; namespace ClusterUI.Client.Controls.Parts { /// /// WaferTransferDialog.xaml 的交互逻辑 /// public partial class WaferTransferDialog : Window { public WaferTransferDialog(WaferData waferData, string sourceStation, string sourceSlot, string destinationStation, string destinationSlot) { InitializeComponent(); lbSource.Content = sourceStation; lbSourceSlot.Content = sourceSlot; lbDest.Content = destinationStation; lblDestSlot.Content = destinationSlot; } private void btnOK_Click(object sender, RoutedEventArgs e) { DialogResult = true; Close(); } private void btnCancel_Click(object sender, RoutedEventArgs e) { DialogResult = false; Close(); } } }