Class
ListViewLoadDataUICommand

Represents a command that can perform a given action.

Definition

Namespace:Telerik.UI.Xaml.Controls.Data.ListView

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class ListViewLoadDataUICommand : ICommand

Inheritance: objectListViewLoadDataUICommand

Implements: ICommand

Constructors

ListViewLoadDataUICommand(ListViewLoadDataControl)

Initializes a new instance of the ListViewLoadDataUICommand class.

Declaration

cs-api-definition
public ListViewLoadDataUICommand(ListViewLoadDataControl owner)

Parameters

owner

ListViewLoadDataControl

Properties

LoadDataControl

Gets or sets the ListViewLoadDataControl.

Declaration

cs-api-definition
public ListViewLoadDataControl LoadDataControl { get; set; }

Property Value

ListViewLoadDataControl

Methods

CanExecute(object)

Defines the method that determines whether the command can execute in its current state.

Declaration

cs-api-definition
public bool CanExecute(object parameter)

Parameters

parameter

object

The parameter used by the command.

Returns

bool

Returns a value indicating whether this command can be executed.

Implements ICommand.CanExecute(object)

Execute(object)

Defines the method to be called when the command is invoked.

Declaration

cs-api-definition
public void Execute(object parameter)

Parameters

parameter

object

The parameter used by the command.

Implements ICommand.Execute(object)

Events

CanExecuteChanged

Occurs when changes occur that affect whether or not the command should execute.

Declaration

cs-api-definition
public event EventHandler CanExecuteChanged

Event Value

EventHandler

Implements ICommand.CanExecuteChanged