// Copyright (c) The Avalonia Project. All rights reserved. // Licensed under the MIT license. See licence.md file in the project root for full license information. namespace Avalonia.Controls { /// /// Interface implemented by controls that act as controllers for an /// . /// public interface IVirtualizingController { /// /// Called when the 's controls should be updated. /// /// /// The controller should respond to this method being called by either adding /// children up until becomes true or /// removing controls. /// void UpdateControls(); } }