ListViewCancelMode 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ListView 項目で [キャンセル] ボタンがクリックされたときにユーザーが実行していた操作の種類を判断します。
public enum class ListViewCancelMode
public enum ListViewCancelMode
type ListViewCancelMode =
Public Enum ListViewCancelMode
- 継承
フィールド
CancelingEdit | 0 | ユーザーは編集操作をキャンセルしました。 |
CancelingInsert | 1 | ユーザーは挿入操作をキャンセルしました。 |
例
次の例では、 列挙を使用 ListViewCancelMode して、アイテムで取り消されている操作を確認する方法を ListView 示します。
protected void ContactsListView_ItemCanceling(object sender, ListViewCancelEventArgs e)
{
//Check the operation that raised the event
if (e.CancelMode == ListViewCancelMode.CancelingEdit)
{
// The update operation was canceled. Display the
// primary key of the item.
Message.Text = "Update for the ContactID " +
ContactsListView.DataKeys[e.ItemIndex].Value.ToString() + " canceled.";
}
else
{
Message.Text = "Insert operation canceled.";
}
}
Protected Sub ContactsListView_ItemCanceling(ByVal sender As Object, _
ByVal e As ListViewCancelEventArgs)
'Check the operation that raised the event
If (e.CancelMode = ListViewCancelMode.CancelingEdit) Then
' The update operation was canceled. Display the
' primary key of the item.
Message.Text = "Update for the ContactID " & _
ContactsListView.DataKeys(e.ItemIndex).Value.ToString() & " canceled."
Else
Message.Text = "Insert operation canceled."
End If
End Sub
注釈
ListViewCancelMode列挙体は、アイテムの [キャンセル] ボタンがクリックされたときにユーザーが実行していた操作の種類をListView表すために使用されます。 ([キャンセル] ボタンは、プロパティが CommandName
"Cancel" に設定されているボタンです)。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET