Sic.Framework-Nanjing-Baishi/MECF.Framework.UI.Client/CenterViews/DataLogs/WaferHistory/WaferHistoryView.xaml.cs

26 lines
737 B
C#

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace MECF.Framework.UI.Client.CenterViews.DataLogs.WaferHistory
{
/// <summary>
/// WaferHistoryView.xaml 的交互逻辑
/// </summary>
public partial class WaferHistoryView : UserControl
{
public WaferHistoryView()
{
InitializeComponent();
}
private void dataGrid_LotList_DataContextChanged(object sender, DependencyPropertyChangedEventArgs e)
{
dataGrid_LotList.CanUserAddRows = false;
if (dataGrid_LotList.Items == null || dataGrid_LotList.Items.Count == 0)
dataGrid_LotList.CanUserAddRows = true;
}
}
}