System.Windows.Controls.PopulatedEventArgs.PopulatedEventArgs C# (CSharp) Method

PopulatedEventArgs() public method

Initializes a new instance of the T:System.Windows.Controls.PopulatedEventArgs.
public PopulatedEventArgs ( IEnumerable data ) : System.Collections
data IEnumerable The list of possible matches added to the /// drop-down portion of the /// control.
return System.Collections
        public PopulatedEventArgs(IEnumerable data)
        {
            Data = data;
        }

Same methods

PopulatedEventArgs::PopulatedEventArgs ( IEnumerable data, RoutedEvent routedEvent ) : System.Collections
PopulatedEventArgs