在另一个应用程序中从UserControl分配comboBox.ItemsSource

时间:2014-07-22 19:12:41

标签: c# .net wpf xaml combobox

我建立了自己的"搜索面板"其中我有一个搜索词的TextBox, 用于指定搜索条件的ComboBox和用于开始搜索的按钮。

ucSearchPanel XAML:

<UserControl x:Class="TestProjekt.Views.UserControls.ucSearchPanel"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    Width="auto" Height="auto">
    <Grid>
        <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition />
        </Grid.RowDefinitions>
            <StackPanel Orientation="Horizontal" Grid.Row="0" >
            <Label Name="lblSearch" Width="{Binding ElementName=tbSearch, Path=ActualWidth}" HorizontalContentAlignment="Center">Suche</Label>
            <Label Name="lblSearchCriteria" Width="{Binding ElementName=cbSearchCriteria, Path=ActualWidth}" HorizontalContentAlignment="{Binding ElementName=lblSearch, Path=HorizontalContentAlignment}">Suchkriterium</Label>
        </StackPanel>
        <StackPanel Orientation="Horizontal" Grid.Row="1">
            <TextBox Name="tbSearch" MinWidth="100"></TextBox>
            <ComboBox Name="cbSearchCriteria" MinWidth="{Binding ElementName=tbSearch, Path=MinWidth}"  />
            <Button Name="btnSearch">Suche</Button>
        </StackPanel>
    </Grid>
</UserControl>

但ComboBox中的搜索标准因用例和用例而异... 因此,我想在不同的应用程序中使用ucSearchPanel中ComboBox的Property ItemsSource。

如果我为ucSearchPanel设置标识符x:Name,我可以通过Code-Behind中的C#代码设置ucSearchPanels.NameComboBox.ItemsSource。

但是,我也想在XAML中做这件事。因此,我创建了一个依赖属性:

using System.Collections;
using System.Windows;
using System.Windows.Controls;

ucSearchPanel.xaml.cs:

  namespace TestProjekt.Views.UserControls
  {
      /// <summary>
      /// Interaktionslogik für ucSearchRegion.xaml
      /// </summary>
      public partial class ucSearchPanel : UserControl
      {
          public static readonly DependencyProperty cbSearchCriteriaItemsSourceProperty;
          public IEnumerable cbSearchCriteriaItemsSource
          {
              get { return (IEnumerable)GetValue(cbSearchCriteriaItemsSourceProperty); }
              set { SetValue(cbSearchCriteriaItemsSourceProperty, value) }

          }

          public string cbDisplayMemberPath
          {
              get
              {
                  return cbSearchCriteria.DisplayMemberPath;
              }
              set
              {
                  cbSearchCriteria.DisplayMemberPath = value;
              }
          }

          static ucSearchPanel()
          {
              cbSearchCriteriaItemsSourceProperty = DependencyProperty.Register("cbSearchCriteriaItemsSource",
              typeof(IEnumerable), typeof(ucSearchPanel));
          }

          public ucSearchPanel()
          {
              InitializeComponent();
          }
      }
  }

正如您在源代码中看到的,我没有直接将Dependency属性分配给ComboBox.ItemsSource。 因此,如果我将ObservableCollection绑定到Property,则ucSearchPanel中的ComboBox中不会显示任何项目。

我想知道在C#代码中如何以及在何处指定public static readonly DependencyProperty cbSearchCriteriaItemsSourceProperty引用cbSearchCriteria.ItemsSource。

我想提前感谢您的帮助并保持

最好的问候

1 个答案:

答案 0 :(得分:0)

我通过在构造函数中添加以下代码行来修复我的问题:

  Binding binding = new Binding("cbSearchPlaceItemsSource");
  binding.Source = this;
  cbSearchPlace.SetBinding(ComboBox.ItemsSourceProperty, binding);

现在它按我的意愿运作。