ComboBox / ListBox - 一个没有文档的功能?

时间:2018-03-05 22:02:18

标签: wpf wpf-controls

今天,由于输入错误,我设法生成了以下xaml:

<ListView>
    first line<Button>second line</Button>the third<system:String>the fourth</system:String>
</ListView>

这将编译并生成一个四行列表:

enter image description here

这也适用于ListBox,ItemsControl和ComboBox。

我的问题:你知道微软是否记录了这些内容吗?我以前从没见过这样的xaml。

1 个答案:

答案 0 :(得分:1)

您描述的所有项目都来自ItemsControlItemsControl MSDN文档有一个示例,其中列表框中添加了多种类型的控件,与将项目添加到ListView的方式非常相似。

来自MSDN的相关XAML:

<!--Create a ListBox that contains a string, a Rectangle,
     a Panel, and a DateTime object. These items can be accessed
     via the Items property.-->
<ListBox xmlns:sys="clr-namespace:System;assembly=mscorlib"
         Name="simpleListBox">

  <!-- The <ListBox.Items> element is implicitly used.-->
  This is a string in a ListBox

  <sys:DateTime>2004/3/4 13:6:55</sys:DateTime>

  <Rectangle Height="40" Width="40"  Fill="Blue"/>

  <StackPanel Name="itemToSelect">
    <Ellipse Height="40" Fill="Blue"/>
    <TextBlock>Text below an Ellipse</TextBlock>
  </StackPanel>

  <TextBlock>String in a TextBlock</TextBlock>
  <!--</ListBox.Items>-->
</ListBox>