ComboBox Test : ComboBox « Windows Presentation Foundation « VB.Net Tutorial






<Window x:Class="ClassicControls.ComboBoxTest"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ComboBoxTest" Height="300" Width="300"
    >
  <StackPanel>
    <ComboBox Margin="5" >
      <StackPanel Orientation="Horizontal">
        <Image Source="c:\image.jpg"  Width="30" Height="30"></Image>
        <Label VerticalContentAlignment="Center">A happy face</Label>
      </StackPanel>
      <StackPanel Orientation="Horizontal">
        <Image Source="c:\image.jpg" Width="30" Height="30"></Image>
        <Label VerticalContentAlignment="Center">A warning sign</Label>
      </StackPanel>
      <StackPanel Orientation="Horizontal">
        <Image Source="c:\image.jpg"  Width="30" Height="30"></Image>
        <Label VerticalContentAlignment="Center">A happy face</Label>
      </StackPanel>
    </ComboBox>
  </StackPanel>
</Window>
WPF Combo Box Test








16.12.ComboBox
16.12.1.ComboBox TestComboBox Test
16.12.2.Bind ComboBox to ListBox ItemsSourceBind ComboBox to ListBox ItemsSource
16.12.3.ComboBox with ComboBoxItemComboBox with ComboBoxItem
16.12.4.Gets the currently selected ComboBoxItem when the user clicks the Button.Gets the currently selected ComboBoxItem when the user clicks the Button.
16.12.5.if the user has entered text into the ComboBox instead.if the user has entered text into the ComboBox instead.
16.12.6.Handles ComboBox SelectionChanged events.Handles ComboBox SelectionChanged events.
16.12.7.Handles ComboBoxItem Selected events.Handles ComboBoxItem Selected events.
16.12.8.View and Select Items Using a ComboBoxView and Select Items Using a ComboBox