ListViewBase.IsItemClickEnabled Property

Definition

Gets or sets a value that indicates whether items in the view fire an ItemClick event in response to interaction.

public:
 property bool IsItemClickEnabled { bool get(); void set(bool value); };
bool IsItemClickEnabled();

void IsItemClickEnabled(bool value);
public bool IsItemClickEnabled { get; set; }
var boolean = listViewBase.isItemClickEnabled;
listViewBase.isItemClickEnabled = boolean;
Public Property IsItemClickEnabled As Boolean
<listViewBase IsItemClickEnabled="bool" />

Property Value

Boolean

bool

true if interaction fires an ItemClick event; otherwise, false. The default is false.

Remarks

By default, a user can select items in the view by tapping or clicking on them. You can change this behavior to make the user interaction fire a click event instead of triggering item selection.

If you set the IsItemClickEnabled property to true, you must set the SelectionMode property to ListViewSelectionMode.None. Handle the ItemClick event to respond to the user interaction.

Applies to

See also