WPF ListBox的内容属性Items

<Window x:Class="XamlTest.Window3"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window3" Height="300" Width="300">
    <Grid>
        <ListBox>
            <ListBox.Items>
                <CheckBox Content="chebox1"></CheckBox>
                <CheckBox Content="chebox2"></CheckBox>
                <TextBox Text="nihao"></TextBox>
                <Button Content="hahahaa"></Button>
            </ListBox.Items>
        </ListBox>
    </Grid>
</Window>
posted @ 2018-07-05 10:55  dxm809  阅读(213)  评论(0编辑  收藏  举报