123456789101112131415161718192021222324 |
- <Window x:Class="Test.SearchControl.WinComboBox"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:Test.SearchControl"
- xmlns:controls="http://schemas.FWind/xaml"
- mc:Ignorable="d"
- Title="WinComboBox" Height="300" Width="300">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- <RowDefinition></RowDefinition>
- </Grid.RowDefinitions>
- <controls:SearchComboBox FontSize="18" ItemsSource="{Binding ItemsStr}" SelectedItem="{Binding Selected,Mode=TwoWay}">
-
- </controls:SearchComboBox>
- <Button Name="Button" Grid.Row="1" Content="选中项" Click="Button_Click"></Button>
- <ListBox Grid.Row="2" ItemsSource="{Binding ItemsStr}"></ListBox>
- <TextBox Name="Text" Grid.Row="3" ></TextBox>
- </Grid>
- </Window>
|