Font-Bold of HeaderStyle in gridview

本文关键字:gridview in HeaderStyle of Font-Bold | 更新日期: 2023-09-27 17:51:23

我在asp.net中使用这个代码:

<FooterStyle BackColor="Tan" />
<HeaderStyle BackColor="Tan" Font-Bold="False" Font-Size="11px" />
<PagerStyle BackColor="PaleGoldenrod" ForeColor="DarkSlateBlue" 
    HorizontalAlign="Center" />
<SelectedRowStyle BackColor="DarkSlateBlue" ForeColor="GhostWhite" />
<SortedAscendingCellStyle BackColor="#FAFAE7" />
<SortedAscendingHeaderStyle BackColor="#DAC09E" />
<SortedDescendingCellStyle BackColor="#E1DB9C" />
<SortedDescendingHeaderStyle BackColor="#C2A47B" />

我想让Font-Bold of HeaderStyle = false:

<HeaderStyle BackColor="Tan" Font-Bold="False" Font-Size="11px" />

但是它在浏览器中不是false并且在HeaderStyle中显示字体是Bold,

Font-Bold of HeaderStyle in gridview

我用这个:

HeaderStyle-Font-Bold="false"

OK:-)