// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
///
/// Provides data for the event.
///
public enum AutoSuggestionBoxTextChangeReason
{
///
/// The user edited the text.
///
UserInput = 0,
///
/// The text was changed via code.
///
ProgrammaticChange = 1,
///
/// The user selected one of the items in the auto-suggestion box.
///
SuggestionChosen = 2,
}