为 gridview 的 ItemStyle- Width 排除 headers?

Exclude headers for ItemStyle- Width for gridview?

我正在尝试使用 ItemStyle- Width,但这仅在我在页面加载中使用 Attribites.Add("Style"...) 时有效。

protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {

...

        }

        gwActivity.Attributes.Add("style", "word-break:break-all;word-wrap:break-word");


    }

不过这不是问题。我的问题是 headers 列在 ItemStyle-Width:... 中受到影响,我不希望出现这种情况。我可以只玩这些行而不玩 headers 吗?

<%--************************ Gridview section ************************--%>
        <asp:GridView ID="gwActivity" runat="server"  AutoGenerateColumns="False" OnRowCommand="gwActivity_RowCommand" CssClass="gwActivity"  >
            <Columns>

                <asp:BoundField DataField="ActivityID" HeaderText="ActivitID"></asp:BoundField>

            </Columns>

            <HeaderStyle BackColor="#E6E6E6" Font-Bold="false" Font-Names="Arial" ForeColor="#000000"  />
            <%-- <AlternatingRowStyle BackColor="#E6E6E6" /> --%>
        </asp:GridView>

试试这个..

    <asp:GridView ID="gwActivity" runat="server"  
 AutoGenerateColumns="False" OnRowCommand="gwActivity_RowCommand" 
  CssClass="gwActivity"  >
 <HeaderStyle BackColor="#E6E6E6" Font-Bold="false" ForeColor="#000000" Font-Names="Arial  />
        <Columns>

            <asp:BoundField DataField="ActivityID" HeaderText="ActivitID"></asp:BoundField>

<asp:BoundField DataField="ActivityID" HeaderText="ActivitID" HeaderStyle-Font-Bold="false"
                                HeaderStyle-Font-Size="12px" ItemStyle-HorizontalAlign="Left" ItemStyle-Width="25">
                               <HeaderStyle Font-Bold="False" Font-Size="12px" />
                                <ItemStyle Font-Size="12px" HorizontalAlign="Left" Width="200px" /> //set width you want..
                            </asp:BoundField>

        </Columns>

    </asp:GridView>