Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.05 KB

autosuggestbox_textboxstyle.md

File metadata and controls

43 lines (31 loc) · 1.05 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.AutoSuggestBox.TextBoxStyle
winrt property

Windows.UI.Xaml.Controls.AutoSuggestBox.TextBoxStyle

-description

Gets or sets the style of the auto-suggest text box.

-xaml-syntax

<AutoSuggestBox TextBoxStyle={StaticResource styleResourceKey}/>
- or -
<AutoSuggestBox>
  <AutoSuggestBox.TextBoxStyle>
    <Style TargetType="TextBox">
      oneOrMoreSetters
    </Style>
  </AutoSuggestBox.TextBoxStyle>
</AutoSuggestBox>

-xaml-values

styleResourceKey
styleResourceKeyThe key that identifies the style being requested. The key refers to an existing resource in a ResourceDictionary.
oneOrMoreSetters
oneOrMoreSettersOne or more Setter elements with Property attributes that target the dependency properties of the TextBox component of the AutoSuggestBox template.
## -property-value The style of the auto-suggest text box.

-remarks

-examples

-see-also