Combobox“选择项目”绑定

时间:2012-01-16 17:03:13

标签: c# wpf binding combobox

我正在开发一些需要“select”属性作为WPF顶级选项的ComboBox(c#)

目前我已经命名了组合框,然后在数组字符串后面的代码中填充。

<ComboBox Width="150" x:Name="cmbTitle" Margin="3" SelectedIndex="0" />

cmbTitle.Items.Add("Select");
foreach (var title in Constants.Title)
            cmbTitle.Items.Add(title);

我的问题是,选择的索引总是会被字符串中索引的1除掉。

在做完我的研究后,我发现这是一种非常史前的填充组合框的方式(WinFrom背景)。在我看过的每个例子中,常量似乎都存储在枚举中,所以想要远离多个字符串[] s。

在支持WPF中的“选择”选项的同时,将枚举绑定到组合框的最佳方法是什么? 我今天看了六个选项,我不太清楚要列出的其他代码示例。

这是一个非常开放的问题,但我很遗憾。

提前致谢, 奥利

2 个答案:

答案 0 :(得分:1)

我认为填充ComboBox的最佳方法是使用IDictionary。

例如,你的代码隐藏:

public YourEnum SelectedOption { get; set; }

public IDictionary<string, YourEnum> Options = new Dictionary<string, YourEnum?>();

Options.Add("Select", null);
Options.Add("Option 1", YourEnum.Option1);
...
Options.Add("Option N", YourEnum.OptionN);

您的xaml文件:

<ComboBox ItemsSource="{Binding Options, ...}" SelectedValue="{Binding SelectedOption, ...}" DisplayMemberPath="Key" SelectedValuePath="Value" />

答案 1 :(得分:1)

  1. 可以从Enum.GetValues()检索枚举的值,并且通常使用ObjectDataProvider来完成对方法的绑定。以下是获取所有BindingMode值的示例:

    <ObjectDataProvider x:Key="BindingModes" ObjectType="{x:Type sys:Enum}" MethodName="GetValues">
        <ObjectDataProvider.MethodParameters>
            <x:Type TypeName="BindingMode" />
        </ObjectDataProvider.MethodParameters>
    </ObjectDataProvider>
    

    现在,我们可以绑定ItemsSource的{​​{1}}:

    ComboBox
  2. 我们的控件需要一个新属性来提示:

    <ComboBox ItemsSource="{Binding Source={StaticResource BindingModes}}" />
    

    我们可以作弊并将public class ExtendedComboBox : ComboBox { public static readonly DependencyProperty PromptProperty = DependencyProperty.Register("Prompt", typeof(string), typeof(ExtendedComboBox), new PropertyMetadata(string.Empty)); public string Prompt { get { return (string)GetValue(PromptTextProperty); } set { SetValue(PromptTextProperty, value); } } } 的提示放在我们的控制范围内,并在选择了某个项目时隐藏它。为此,我们使用包含TextBlock的新控件重写控件的ControlTemplate。我修改了there的模板:

    TextBlock
  3. 结合,我们有:

    <Style x:Key="PromptTextBlock" TargetType="{x:Type TextBlock}" >
        <Setter Property="Visibility" Value="Hidden" />
        <Style.Triggers>
            <DataTrigger Binding="{Binding SelectedItem, RelativeSource={RelativeSource TemplatedParent}}" Value="{x:Null}">
                <Setter Property="Visibility" Value="Visible" />
            </DataTrigger>
        </Style.Triggers>
    </Style>
    
    <Style x:Key="PromptedComboBox" TargetType="{x:Type local:ExtendedComboBox}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type local:ExtendedComboBox}">
                    <Grid>
                        <ToggleButton x:Name="DropDownToggle"
                                      HorizontalAlignment="Stretch" VerticalAlignment="Stretch"  
                                      Margin="-1" HorizontalContentAlignment="Right"
                                      IsChecked="{Binding IsDropDownOpen, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}">
                            <Path x:Name="BtnArrow" Height="4" Width="8" 
                                  Stretch="Uniform" Margin="0,0,4,0"  Fill="Black"
                                  Data="F1 M 300,-190L 310,-190L 305,-183L 301,-190 Z " />
                        </ToggleButton>
                        <ContentPresenter x:Name="ContentPresenter" Margin="6,2,25,2"
                                          Content="{TemplateBinding SelectionBoxItem}"
                                          ContentTemplate="{TemplateBinding SelectionBoxItemTemplate}"
                                          ContentTemplateSelector="{TemplateBinding ItemTemplateSelector}">
                        </ContentPresenter>
                        <TextBox x:Name="PART_EditableTextBox"
                                 Style="{x:Null}"
                                 Focusable="False"
                                 Background="{TemplateBinding Background}"
                                 HorizontalAlignment="Left" 
                                 VerticalAlignment="Center" 
                                 Margin="3,3,23,3"
                                 Visibility="Hidden"
                                 IsReadOnly="{TemplateBinding IsReadOnly}"/>
                            <Popup x:Name="PART_Popup" IsOpen="{TemplateBinding IsDropDownOpen}">
                                <Border x:Name="PopupBorder" 
                                        HorizontalAlignment="Stretch" Height="Auto" 
                                        MinWidth="{TemplateBinding ActualWidth}"
                                        MaxHeight="{TemplateBinding MaxDropDownHeight}"
                                        BorderThickness="{TemplateBinding BorderThickness}" 
                                        BorderBrush="Black" Background="White" CornerRadius="3">
                                    <ScrollViewer x:Name="ScrollViewer" BorderThickness="0" Padding="1">
                                        <ItemsPresenter/>
                                    </ScrollViewer>
                                </Border>
                            </Popup>
                        <TextBlock Margin="4,3,20,3" Text="{Binding PromptText, RelativeSource={RelativeSource TemplatedParent}}" Style="{StaticResource PromptTextBlock}"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
         </Setter>
     </Style>