ClassListViewLoadDataUICommand
Class
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:
Constructors
ListViewLoadDataUICommand(ListViewLoadDataControl)
Initializes a new instance of the ListViewLoadDataUICommand class.
Declaration
cs-api-definition
public ListViewLoadDataUICommand(ListViewLoadDataControl owner)
Parameters
owner
Properties
LoadDataControl
Gets or sets the ListViewLoadDataControl.
Declaration
cs-api-definition
public ListViewLoadDataControl LoadDataControl { get; set; }
Property Value
Methods
CanExecute(object)
Defines the method that determines whether the command can execute in its current state.
Execute(object)
Defines the method to be called when the command is invoked.
Declaration
cs-api-definition
public void Execute(object parameter)
Parameters
parameter
The parameter used by the command.
Implements
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
Implements