LabelEditEventArgs.CancelEdit 属性

定义

获取或设置一个值,该值指示是否应取消对 ListViewItem 的标签所作的更改。

public:
 property bool CancelEdit { bool get(); void set(bool value); };
public bool CancelEdit { get; set; }
member this.CancelEdit : bool with get, set
Public Property CancelEdit As Boolean

属性值

如果应取消 ListViewItem 标签的编辑操作,则为 true;否则为 false

示例

下面的代码示例演示如何处理 ListView.BeforeLabelEdit 事件并使用 ItemCancelEdit 属性。 若要运行该示例,请将以下代码粘贴到包含名为 ListView1 的 ListView 控件的窗体中,并填充了至少 3 个项目。 确保所有事件都与其事件处理方法相关联。

void ListView1_BeforeLabelEdit( Object^ sender,
   System::Windows::Forms::LabelEditEventArgs^ e )
{
   // Allow all but the first two items of the list to 
   // be modified by the user.
   if ( e->Item < 2 )
   {
      e->CancelEdit = true;
   }
}
private void ListView1_BeforeLabelEdit(object sender, 
    System.Windows.Forms.LabelEditEventArgs e)
{
    // Allow all but the first two items of the list to 
    // be modified by the user.
    if (e.Item<2)
    {
        e.CancelEdit = true;
    }
}

Private Sub ListView1_BeforeLabelEdit(ByVal sender As Object, _
    ByVal e As System.Windows.Forms.LabelEditEventArgs) _
    Handles ListView1.BeforeLabelEdit

    ' Allow all but the first two items of the list to be modified by
    ' the user.
    If (e.Item < 2) Then
        e.CancelEdit = True
    End If
End Sub

注解

可以使用此属性取消对 标签所做的更改,ListViewItem并将其还原为其原始文本。 使用此属性可防止项描述文字更改为不符合应用程序要求的值。

适用于