20 lines
504 B
C#
20 lines
504 B
C#
|
|
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace WPFluent.Controls;
|
|
|
|
/// <summary>
|
|
/// Provides data for the <see cref="AutoSuggestBox.TextChanged"/> event.
|
|
/// </summary>
|
|
public sealed class AutoSuggestBoxTextChangedEventArgs : RoutedEventArgs
|
|
{
|
|
public AutoSuggestBoxTextChangedEventArgs(RoutedEvent eventArgs, object sender) : base(eventArgs, sender)
|
|
{
|
|
}
|
|
|
|
public required AutoSuggestionBoxTextChangeReason Reason { get; init; }
|
|
|
|
public required string Text { get; init; }
|
|
}
|