<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>

05-11 20:46