DataGrid.CaptionVisibleChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CaptionVisible プロパティが変更された場合に発生します。
public:
event EventHandler ^ CaptionVisibleChanged;
public event EventHandler CaptionVisibleChanged;
member this.CaptionVisibleChanged : EventHandler
Public Custom Event CaptionVisibleChanged As EventHandler
イベントの種類
例
次のコード例では、このイベントの使用方法を示します。
// 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.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 Sub CallCaptionVisibleChanged()
AddHandler myDataGrid.CaptionVisibleChanged, AddressOf Grid_CaptionVisibleChanged
End Sub
' 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
' 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
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET