WPF将My.Settings集合绑定到Combobox项目

时间:2008-10-15 13:51:51

标签: wpf binding

我是WPF的新手,仍然试图在XAML中绕过绑定。

我想在my.settings中使用字符串集合的值填充组合框。我可以用这样的代码来做:

Me.ComboBox1.ItemsSource = My.Settings.MyCollectionOfStrings

......它有效。

如何在我的XAML中执行此操作?有可能吗?

由于

5 个答案:

答案 0 :(得分:18)

,您可以(并且应该在大多数情况下)在XAML中声明绑定,因为这是WPF中最强大的功能之一。

在您的情况下,要将ComboBox绑定到您的一个自定义设置,您将使用以下XAML:

<Window x:Class="WpfApplication1.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:p="clr-namespace:WpfApplication1.Properties"
    Title="Window1">
    <StackPanel>
        <ComboBox
            ItemsSource="{Binding Source={x:Static p:Settings.Default}, Path=MyCollectionOfStrings}" />
    </StackPanel>
</Window>

请注意以下几个方面:

  • 我们声明了一个带有前缀'p'的XML命名空间,该前缀'p'指向'Settings'类所在的.NET命名空间,以便在XAML中引用它。
  • 我们使用标记扩展名“{Binding}”来声明XAML中的绑定
  • 我们使用标记扩展名'Static'来表示我们想在XAML中引用静态(VB中的'shared')类成员

答案 1 :(得分:3)

使用自定义标记扩展,我有一个更简单的解决方案。在你的情况下,它可以像这样使用:

<Window x:Class="Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:my="clr-namespace:WpfApplication1"
    Title="Window1" Height="90" Width="462" Name="Window1">
    <Grid>
        <ComboBox ItemsSource="{my:SettingBinding MyCollectionOfStrings}" />
    </Grid>
</Window>

您可以在我的博客上找到此标记扩展程序的C#代码: http://www.thomaslevesque.com/2008/11/18/wpf-binding-to-application-settings-using-a-markup-extension/

答案 2 :(得分:1)

有可能。在C#中,我这样做(对于一个简单的bool):

IsExpanded="{Binding Source={StaticResource Settings}, Mode=TwoWay, Path=Default.ASettingValue}"

我在App.xaml的Application.Resources中定义了静态资源“Settings”:

<!-- other namespaces removed for clarity -->
<Application xmlns:settings="clr-namespace:DefaultNamespace.Properties" >
 <Application.Resources>
  <ResourceDictionary>
   <settings:Settings x:Key="Settings" />
   <!--stuff removed-->
  </ResourceDictionary>
 </Application.Resources>
</Application>

你的道路可能不同;在C#中,您可以通过

访问应用程序中的应用程序设置
DefaultNamespace.Properties.Settings.Default.ASettingValue

答案 3 :(得分:1)

知道了!

<Window x:Class="Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:p="clr-namespace:WpfApplication1"
    Title="Window1" Height="90" Width="462" Name="Window1">
    <Grid>
        <ComboBox ItemsSource="{Binding Source={x:Static p:Settings.Default}, Path=MyCollectionOfStrings}" />
    </Grid>
</Window>

谢谢大家帮助我找到一个伟大的“啊哈!”时刻:-) ...希望在我花了更多时间在WPF后,我会明白为什么会这样。

答案 4 :(得分:0)

您还可以将列表存储为设置中的分隔字符串,然后使用转换器。

<ComboBox ItemsSource="{Binding Default.ImportHistory,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay,Converter={StaticResource StringToListConverter},ConverterParameter=|}" IsEditable="True">
/// <summary>
/// Converts a delimited set of strings to a list and back again. The parameter defines the delimiter
/// </summary>
public class StringToListConverter : IValueConverter {
 /// <summary>
 /// Takes a string, returns a list seperated by {parameter}
 /// </summary>
 public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
     string serializedList = (value ?? string.Empty).ToString(),
            splitter = (parameter ?? string.Empty).ToString();
     if(serializedList.Trim().Length == 0) {
         return value;
     }
     return serializedList.Split(new[] { splitter }, StringSplitOptions.RemoveEmptyEntries);
 }
 /// <summary>
 /// Takes a list, returns a string seperated by {parameter}
 /// </summary>
 public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
     var items = value as IEnumerable;
     var splitter = (parameter ?? string.Empty).ToString();
     if(value == null || items == null) {
         return value;
     }
     StringBuilder buffer = new StringBuilder();
     foreach(var itm in items) {
         buffer.Append(itm.ToString()).Append(splitter);
     }
     return buffer.ToString(0, splitter.Length > 0 ? buffer.Length - splitter.Length : buffer.Length);
 }
}

然后,当单击浏览按钮时,您可以添加到列表中:

var items = Settings.Default.ImportHistory.Split('|');
if(!items.Contains(dlgOpen.FileNames[0])) {
 Settings.Default.ImportHistory += ("|" + dlgOpen.FileNames[0]);
}
cboFilename.SelectedValue = dlgOpen.FileNames[0];
Settings.Default.Save();