0

私はasp.netのgridview形式にこのコードを使用します:

<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" />

私はHeaderStyleのFont-Boldが欲しい=false:

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

しかし、ブラウザではfalseではなく、HeaderStyleの表示フォントは太字です。

4

1 に答える 1

0

私はこれを使用します:

HeaderStyle-Font-Bold="false"

大丈夫です :-)

于 2013-01-12T09:09:47.647 に答える