// (c) Copyright Microsoft Corporation. // This source is subject to the Microsoft Public License (Ms-PL). // Please see https://go.microsoft.com/fwlink/?LinkID=131993 for details. // All other rights reserved. using System; using System.Collections; namespace Avalonia.Controls { /// /// Provides data for the /// /// event. /// public class PopulatedEventArgs : EventArgs { /// /// Gets the list of possible matches added to the drop-down portion of /// the /// control. /// /// The list of possible matches added to the /// . public IEnumerable Data { get; private set; } /// /// Initializes a new instance of the /// . /// /// The list of possible matches added to the /// drop-down portion of the /// control. public PopulatedEventArgs(IEnumerable data) { Data = data; } } }