ComboBox.ShouldPreserveUserEnteredPrefix Property

Definition

Gets or sets a value that indicates whether the ComboBox keeps the user's input or replaces the input with a matching item.

public:
 property bool ShouldPreserveUserEnteredPrefix { bool get(); void set(bool value); };
public bool ShouldPreserveUserEnteredPrefix { get; set; }
member this.ShouldPreserveUserEnteredPrefix : bool with get, set
Public Property ShouldPreserveUserEnteredPrefix As Boolean

Property Value

true if the ComboBox keeps the user's input; false if the ComboBox replaces the input with a matching item The registered default is false. For more information about what can influence the value, see Dependency Property Value Precedence.

Remarks

By default, when the user types a string into the ComboBox that matches one of its items, the item is selected and the text that the user typed is replaced. This can cause the text that the user entered to change case. If the ShouldPreserveUserEnteredPrefix property is set to true, the ComboBox selects the matching item, but preserves the text that the user entered. For example, suppose that a ComboBox contains the string, "Hello" (with a capital H) and the user enters "hello" (with a lowercase h). If ShouldPreserveUserEnteredPrefix is false, the ComboBox selects the matching item, "Hello," in its collection and populates its text box with that string. If ShouldPreserveUserEnteredPrefix is true, "Hello" is selected from the collection, but the text box says "hello."

Dependency Property Information

Identifier field ShouldPreserveUserEnteredPrefixProperty
Metadata properties set to true None

Applies to