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