巨石化纤
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
833 B

using System.Windows;
namespace SSWMS.Client
{
public partial class STORAGE_ALL : AvalonDock.DocumentContent
{
public STORAGE_ALL()
{
InitializeComponent();
DocumentContent_Loaded(null, null);
}
private void DocumentContent_Loaded(object sender, RoutedEventArgs e)
{
this.ucStorage.dgData.U_WindowName = "COMMON";
this.ucStorage.dgData.U_XmlTableName = "V_STORAGE_LIST";
this.ucStorage.dgData.U_TableName = "V_STORAGE_LIST";
this.ucStorage.dgData.U_OrderField = "GOODS_CLASS,STORAGE_ID,STORAGE_LIST_ID";
//this.ucStorage.dgData.U_TotalColumnName = "STORAGE_LIST_QUANTITY";
this.ucStorage.dgData.U_AllowOperatData = false;
this.ucStorage.U_InitControl();
}
}
}