18 lines
447 B
C#
18 lines
447 B
C#
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
// ReSharper disable once CheckNamespace
|
|||
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Provides event data for the <see cref="AutoSuggestBox.QuerySubmitted"/> event.
|
|||
|
|
/// </summary>
|
|||
|
|
public sealed class AutoSuggestBoxQuerySubmittedEventArgs : RoutedEventArgs
|
|||
|
|
{
|
|||
|
|
public AutoSuggestBoxQuerySubmittedEventArgs(RoutedEvent eventArgs, object sender) : base(eventArgs, sender)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public required string QueryText { get; init; }
|
|||
|
|
}
|