DataGridTableStyle.ResetHeaderFont 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 HeaderFont 属性重置为其默认值。
public:
void ResetHeaderFont();
public void ResetHeaderFont ();
member this.ResetHeaderFont : unit -> unit
Public Sub ResetHeaderFont ()
示例
下面的代码示例演示了此成员的用法。
private:
void MySetButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Set the 'HeaderFont' property of the DataGridTableStyle instance.
myTableStyle->HeaderFont = gcnew System::Drawing::Font( "Impact",10 );
// Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid->TableStyles->Add( myTableStyle );
}
void MyResetButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Reset the Header Font to its default value.
myTableStyle->ResetHeaderFont();
}
private void MySetButton_Click(object sender, EventArgs e)
{
// Set the 'HeaderFont' property of the DataGridTableStyle instance.
myTableStyle.HeaderFont=new Font("Impact",10);
// Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myTableStyle);
}
private void MyResetButton_Click(object sender, EventArgs e)
{
// Reset the Header Font to its default value.
myTableStyle.ResetHeaderFont();
}
Private Sub MySetButton_Click(ByVal sender As Object, ByVal e As EventArgs)
' Set the 'HeaderFont' property of DataGridTableStyle instance.
myTableStyle.HeaderFont = New Font("Impact", 10)
' Add the DataGridTableStyle instance to the GridTableStylesCollection.
myDataGrid.TableStyles.Add(myTableStyle)
End Sub
Private Sub MyResetButton_Click(ByVal sender As Object, ByVal e As EventArgs)
' Reset the Header Font to its default value.
myTableStyle.ResetHeaderFont()
End Sub
注解
如果要为 DataGridTableStyle 创建设计器或创建自己的包含 的 DataGridTableStyle控件,则通常使用此方法。