ItemContainerGenerator.GenerateBatches Method
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.
Returns an object that manages the Status property.
public:
IDisposable ^ GenerateBatches();
public IDisposable GenerateBatches ();
member this.GenerateBatches : unit -> IDisposable
Public Function GenerateBatches () As IDisposable
Returns
An object that manages the Status property.
Remarks
A class that inherits from VirtualizingPanel can use this method to get an object that will properly set the generated property. When the GenerateBatches method returns, Status property is set to GeneratingContainers. When the object is disposed, Status is set to ContainersGenerated. You can pass the object to a using
statement that encapsulates your logic that generates item containers. When the object returned from GenerateBatches goes out of scope, the Status property will be properly set.