DataGrid.BackButtonClick 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生於按一下子資料表的 Back
按鈕時。
public:
event EventHandler ^ BackButtonClick;
public event EventHandler BackButtonClick;
member this.BackButtonClick : EventHandler
Public Custom Event BackButtonClick As EventHandler
事件類型
範例
下列程式碼範例會新增 BackButtonClick 事件的事件處理常式。
// Create an instance of the 'BackButtonClick' EventHandler.
private:
void CallBackButtonClick()
{
myDataGrid->BackButtonClick += gcnew EventHandler( this, &MyDataGrid::Grid_BackClick );
}
// Raise the event when 'BackButton' on child table is clicked.
void Grid_BackClick( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// String variable used to show message.
String^ myString = "BackButtonClick event raised, showing parent table";
// Show information about Back button.
MessageBox::Show( myString, "Back button information" );
}
// Create an instance of the 'BackButtonClick' EventHandler.
private void CallBackButtonClick()
{
myDataGrid.BackButtonClick += new EventHandler(Grid_BackClick);
}
// Raise the event when 'BackButton' on child table is clicked.
private void Grid_BackClick(object sender, EventArgs e)
{
// String variable used to show message.
string myString = "BackButtonClick event raised, showing parent table";
// Show information about Back button.
MessageBox.Show(myString, "Back button information");
}
' Create an instance of the 'BackButtonClick' EventHandler.
Private Sub CallBackButtonClick()
AddHandler myDataGrid.BackButtonClick, AddressOf Grid_BackClick
End Sub
' Raise the event when 'BackButton' on child table is clicked.
Private Sub Grid_BackClick(ByVal sender As Object, ByVal e As EventArgs)
' String variable used to show message.
Dim myString As String = "BackButtonClick event raised, showing parent table"
' Show information about Back button.
MessageBox.Show(myString, "Back button information")
End Sub
備註
Back
當子資料工作表顯示時,按鈕就會變成可見。 按一下按鈕會導致方格顯示父資料表。