TextSearch.Text 附加属性

定义

获取或设置一个字符串,该字符串标识控件的集合中的某个项。

see GetText, and SetText
see GetText, and SetText
see GetText, and SetText

示例

以下示例创建一个 ComboBox 包含图像作为项而不是文本的 。 属性 IsEditable 设置为 true,因此在选择其中一个图像时显示文本。

<ComboBox IsEditable="true">
  <Image TextSearch.Text="Cat" Source="data\cat.png"/>
  <Image TextSearch.Text="Dog" Source="data\dog.png"/>
  <Image TextSearch.Text="Fish" Source="data\fish.png"/>
</ComboBox>

注解

此属性指定要在选择项时显示的文本,并使用户能够通过键入此属性的值来选择项。 只要用户键入足够的值以区分项目与所选内容中的其他项,就会选择该项。 对集合中的项使用此属性。

依赖项属性信息

标识符字段 TextProperty
元数据属性设置为 true BindsTwoWayByDefault

适用于

另请参阅