Share via


ItemsView.RemainingItemsThresholdReachedCommand Property

Definition

Gets or sets the command to execute when the remaining items threshold is reached during scrolling.

public:
 property System::Windows::Input::ICommand ^ RemainingItemsThresholdReachedCommand { System::Windows::Input::ICommand ^ get(); void set(System::Windows::Input::ICommand ^ value); };
public System.Windows.Input.ICommand RemainingItemsThresholdReachedCommand { get; set; }
member this.RemainingItemsThresholdReachedCommand : System.Windows.Input.ICommand with get, set
Public Property RemainingItemsThresholdReachedCommand As ICommand

Property Value

An ICommand to execute, or null for no command.

Remarks

This command is commonly used to implement incremental loading (infinite scroll). When scrolling reaches the threshold specified by RemainingItemsThreshold, this command is executed, allowing you to load more items asynchronously.

Applies to