using system;
using system.collections;
using system.componentmodel;
using system.drawing;
using system.data;
using system.windows.forms;
namespace device.forms.ui.grids
{
/// <summary>
/// newdatagrid 的摘要说明。
/// </summary>
public class newdatagrid : datagrid
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private system.componentmodel.container components = null;
public newdatagrid()
{
// 该调用是 windows.forms 窗体设计器所必需的。
initializecomponent();
// todo: 在 initializecomponent 调用后添加任何初始化
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.dispose();
}
}
base.dispose( disposing );
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 – 不要使用代码编辑器
/// 修改此方法的内容。
/// </summary>
private void initializecomponent()
{
//
// newdatagrid
//
this.name = “newdatagrid”;
//this.load += new system.eventhandler(this.newdatagrid_load);
}
#endregion
protected override void onenter(eventargs e) {
try{
base.onenter(e);
}
catch{
return;
}
}
}
}