Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

show title combox check box wpf

<ComboBox
    IsEditable="True"
    IsReadOnly="True"
    ItemsSource="{Binding Items}"
    Text="{Binding Text}">
    <ComboBox.ItemTemplate>
        <DataTemplate
            DataType="{x:Type local:Item}">
            <CheckBox
                Content="{Binding Name}"
                IsChecked="{Binding IsChecked}" />
        </DataTemplate>
    </ComboBox.ItemTemplate>
</ComboBox>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #show #title #combox #check #box #wpf
ADD COMMENT
Topic
Name
6+8 =