D:\NorthwindForWeb\Northwind\CS\DotNet\ADO.Net\Northwind\WebControls\Grid.cs
/*
* This file was generated by ProCG version 2.0
*
* File name: Northwind\WebControls\Grid.cs
* Language: C# - ADO.Net
* Database: My Sql
*
* Copyright (c) 2002-2019 iGenXSoft.
* For more information visit http://www.igenxsoft.com
*/
//ProCG Section 1_0_Using - Please don't edit inside the section
using System;
using System.Web.UI.WebControls;
using System.Web.UI;
using System.Drawing;
using Northwind.Data;
//End ProCG Section 1_0_Using
namespace Northwind.WebControls
{
/// <summary>
/// Summary description for NorthwindGrid.
/// </summary>
public abstract class NorthwindGrid : NorthwindGridBase
{
//ProCG Section 3_0_Body - Please do not edit this section, it will be overridden by ProCG next time code is generated; you may add code between sections.
public NorthwindGrid() : base()
{
}
//End ProCG Section 3_0_Body
protected override void Render(HtmlTextWriter writer)
{
foreach (DataGridColumn dataGridColumn in this.Columns)
{
dataGridColumn.ItemStyle.Wrap = false;
}
base.Render (writer);
}
//ProCG Section 999_0_EndOfClass - Please do not edit this section, it will be overridden by ProCG next time code is generated; you may add code between sections.
}
}
//End ProCG Section 999_0_EndOfClass
// 1384 ProCG uses this line - don't edit it