Share via


DataGrid.CaptionVisibleChanged 事件

CaptionVisible 属性更改后发生。

**命名空间:**System.Windows.Forms
**程序集:**System.Windows.Forms(在 system.windows.forms.dll 中)

语法

声明
Public Event CaptionVisibleChanged As EventHandler
用法
Dim instance As DataGrid
Dim handler As EventHandler

AddHandler instance.CaptionVisibleChanged, handler
public event EventHandler CaptionVisibleChanged
public:
event EventHandler^ CaptionVisibleChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
/** @event */
public void add_CaptionVisibleChanged (EventHandler value)

/** @event */
public void remove_CaptionVisibleChanged (EventHandler value)
JScript 支持使用事件,但不支持进行新的声明。

备注

有关处理事件的更多信息,请参见 使用事件

示例

' Create an instance of the 'CaptionVisibleChanged' EventHandler.
Private Sub CallCaptionVisibleChanged()
   AddHandler myDataGrid.CaptionVisibleChanged, AddressOf Grid_CaptionVisibleChanged
End Sub 'CallCaptionVisibleChanged


' Set the 'CaptionVisible' property on click of a button.
 Private Sub myButton_Click(ByVal sender As Object, ByVal e As EventArgs)
     If myDataGrid.CaptionVisible = True Then
         myDataGrid.CaptionVisible = False
     Else
         myDataGrid.CaptionVisible = True
     End If
 End Sub 'myButton_Click
 
' Raise the event when 'CaptionVisible' property is changed.
 Private Sub Grid_CaptionVisibleChanged(ByVal sender As Object, ByVal e As EventArgs)
     ' String variable used to show message.
     Dim myString As String = "CaptionVisibleChanged event raised, caption is"
     ' Get the state of 'CaptionVisible' property.
     Dim myBool As Boolean = myDataGrid.CaptionVisible
     ' Create appropriate alert message.
     myString += IIf(myBool, " ", " not ") + "visible"
     ' Show information about caption of DataGrid. 
     MessageBox.Show(myString, "Caption information")
 End Sub 'Grid_CaptionVisibleChanged
// Create an instance of the 'CaptionVisibleChanged' EventHandler.
private void CallCaptionVisibleChanged()
{
   myDataGrid.CaptionVisibleChanged += 
                           new EventHandler(Grid_CaptionVisibleChanged);
}

// Set the 'CaptionVisible' property on click of a button.
private void myButton_Click(object sender, EventArgs e)
{
   if (myDataGrid.CaptionVisible == true)
      myDataGrid.CaptionVisible = false;
   else
      myDataGrid.CaptionVisible = true;
}

// Raise the event when 'CaptionVisible' property is changed.
private void Grid_CaptionVisibleChanged(object sender, EventArgs e)
{
   // String variable used to show message.
   string myString = "CaptionVisibleChanged event raised, caption is";
   // Get the state of 'CaptionVisible' property.
   bool myBool = myDataGrid.CaptionVisible;
   // Create appropriate alert message.
   myString += (myBool ? " " : " not ") + "visible";
   // Show information about caption of DataGrid. 
   MessageBox.Show(myString, "Caption information");
}
   // Create an instance of the 'CaptionVisibleChanged' EventHandler.
private:
   void CallCaptionVisibleChanged()
   {
      myDataGrid->CaptionVisibleChanged += gcnew EventHandler( this, &MyDataGrid::Grid_CaptionVisibleChanged );
   }

   // Set the 'CaptionVisible' property on click of a button.
   void myButton_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      if ( myDataGrid->CaptionVisible == true )
            myDataGrid->CaptionVisible = false;
      else
            myDataGrid->CaptionVisible = true;
   }

   // Raise the event when 'CaptionVisible' property is changed.
   void Grid_CaptionVisibleChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // String variable used to show message.
      String^ myString = "CaptionVisibleChanged event raised, caption is";

      // Get the state of 'CaptionVisible' property.
      bool myBool = myDataGrid->CaptionVisible;

      // Create appropriate alert message.
      myString = String::Concat( myString, myBool ? (String^)" " : " not ", "visible" );

      // Show information about caption of DataGrid.
      MessageBox::Show( myString, "Caption information" );
   }
// Create an instance of the 'CaptionVisibleChanged' EventHandler.
private void CallCaptionVisibleChanged()
{
    myDataGrid.add_CaptionVisibleChanged(new EventHandler(
        GridCaptionVisibleChanged));
} //CallCaptionVisibleChanged

// Set the 'CaptionVisible' property on click of a button.
protected void myButton_Click(Object sender, EventArgs e)
{
    if (myDataGrid.get_CaptionVisible() == true) {
        myDataGrid.set_CaptionVisible(false);
    }
    else {
        myDataGrid.set_CaptionVisible(true);
    }
} //myButton_Click

// Raise the event when 'CaptionVisible' property is changed.
protected void GridCaptionVisibleChanged(Object sender, EventArgs e)
{
    // String variable used to show message.
    String myString = "CaptionVisibleChanged event raised, caption is";

    // Get the state of 'CaptionVisible' property.
    boolean myBool = myDataGrid.get_CaptionVisible();

    // Create appropriate alert message.
    myString += (myBool ? " " : " not ") + "visible";

    // Show information about caption of DataGrid. 
    MessageBox.Show(myString, "Caption information");
} //GridCaptionVisibleChanged

平台

Windows 98、Windows 2000 SP4、Windows CE、Windows Millennium Edition、Windows Mobile for Pocket PC、Windows Mobile for Smartphone、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

DataGrid 类
DataGrid 成员
System.Windows.Forms 命名空间