ItemsView.RemainingItemsThresholdReachedCommand Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.