ListViewInsertedEventArgs.KeepInInsertMode 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示是否为 InsertItemTemplate 模板内的控件保留用户输入值。
public:
property bool KeepInInsertMode { bool get(); void set(bool value); };
public bool KeepInInsertMode { get; set; }
member this.KeepInInsertMode : bool with get, set
Public Property KeepInInsertMode As Boolean
属性值
如果为 InsertItemTemplate 模板内的控件保留用户输入值,则为 true
;如果用该控件的默认值替代用户输入值,则为 false
。 默认值为 false
。
示例
下面的示例演示如何在插入操作期间发生错误时,使用 KeepInInsertMode 属性保留用户输入的值。 此代码示例是为 ListViewInsertedEventArgs 类提供的一个更大示例的一部分。
void ContactsListView_ItemInserted(Object sender, ListViewInsertedEventArgs e)
{
if (e.Exception != null)
{
if (e.AffectedRows == 0)
{
e.KeepInInsertMode = true;
Message.Text = "An exception occurred inserting the new Contact. " +
"Please verify your values and try again.";
}
else
Message.Text = "An exception occurred inserting the new Contact. " +
"Please verify the values in the newly inserted item.";
e.ExceptionHandled = true;
}
}
Sub ContactsListView_ItemInserted(ByVal sender As Object, ByVal e As ListViewInsertedEventArgs)
If e.Exception IsNot Nothing Then
If e.AffectedRows = 0 Then
e.KeepInInsertMode = True
Message.Text = "An exception occurred inserting the new Contact. " & _
"Please verify your values and try again."
Else
Message.Text = "An exception occurred inserting the new Contact. " & _
"Please verify the values in the newly inserted item."
End If
e.ExceptionHandled = True
End If
End Sub
注解
默认情况下,控件在 ListView 插入操作后将模板中的 InsertItemTemplate 控件值重置为其默认值。 这使用户能够为要插入的新项添加值。 如果在插入操作期间引发异常,可以通过将 ListView 属性设置为 KeepInInsertModetrue
来使控件保持插入模式。 这将保留之前尝试在模板中 InsertItemTemplate 插入控件项时的值。