Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

ComboBox with ComboBoxItem

<Page     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">     <StackPanel>         <ComboBox>             <ComboBoxItem>One</ComboBoxItem>             <ComboBoxItem>Two</ComboBoxItem>             <ComboBoxItem>Three</ComboBoxItem>         </ComboBox>     </StackPanel> </Page>