我的wpf应用程序中有一个静态ComboBox
,加载空格后跟0-9。我有以下代码它可以完成我需要的工作,但我觉得这不是一个好方法。任何建议或意见将不胜感激。
Test.xaml
<ComboBox Name="cbImportance"
Text="{Binding SelectedStory.ImportanceList, UpdateSourceTrigger=PropertyChanged, ValidatesOnExceptions=True, NotifyOnValidationError=True, ValidatesOnDataErrors=True}" Validation.ErrorTemplate="{StaticResource ErrorTemplate}"
Loaded="cbImportance_Loaded"
Grid.Column="1"
d:LayoutOverrides="Height"
Grid.ColumnSpan="2"
HorizontalAlignment="Stretch"
Margin="0,9"
SelectionChanged="cbImportance_SelectionChanged" />
Test.xaml.cs
private void cbImportance_Loaded(object sender, RoutedEventArgs e)
{
List<string> data = new List<string>();
data.Add("");
data.Add("0");
data.Add("1");
data.Add("2");
data.Add("3");
data.Add("4");
data.Add("5");
data.Add("6");
data.Add("7");
data.Add("8");
data.Add("9");
// ... Get the ComboBox reference.
var cbImportance = sender as ComboBox;
// ... Assign the ItemsSource to the List.
cbImportance.ItemsSource = data;
// ... Make the first item selected.
cbImportance.SelectedIndex = 0;
}
哪一种是将静态值加载到ComboBox
的有效方法:
ViewModel
中创建构造函数并将静态值加载回ComboBox
?答案 0 :(得分:13)
在WPF中,通过标记扩展支持XAML中的对象数组。这对应于x:ArrayExtension
XAML类型MSDN
。
你可以这样做:
<Window ...
xmlns:sys="clr-namespace:System;assembly=mscorlib">
<x:Array x:Key="ParametersArray" Type="{x:Type sys:String}">
<sys:String>0</sys:String>
<sys:String>1</sys:String>
<sys:String>2</sys:String>
<sys:String>3</sys:String>
...
</x:Array>
<ComboBox Name="ParameterComboBox"
SelectedIndex="0"
ItemsSource="{StaticResource ParametersArray}" ... />
要在x:Array
中设置空字符串,请使用 static
成员:
<x:Array x:Key="ParametersArray" Type="{x:Type sys:String}">
<x:Static Member="sys:String.Empty" />
<sys:String>0</sys:String>
<sys:String>1</sys:String>
<sys:String>2</sys:String>
<sys:String>3</sys:String>
...
</x:Array>
如果您需要定义带有数字ComboBox
类型的静态Int32
,则可以更短:
<Window.Resources>
<Int32Collection x:Key="Parameters">0,1,2,3,4,5,6,7,8,9</Int32Collection>
</Window.Resources>
<ComboBox Width="100"
Height="30"
ItemsSource="{StaticResource Parameters}" />
或者像这样:
<ComboBox Width="100" Height="30">
<ComboBox.ItemsSource>
<Int32Collection>0,1,2,3,4,5,6,7,8,9</Int32Collection>
</ComboBox.ItemsSource>
</ComboBox>
答案 1 :(得分:5)
有许多方法可以使用可枚举对象作为ItemsSource,基于{StaticResource}
或{Binding}
或其他依赖属性。绑定是首选方式,因为它符合MVVM方法,建议用于WPF应用程序。
通过绑定,我们将值列表作为ViewModel对象的属性,根据WPF设置为DataContext
。所以,这是绑定示例:
视图模型:
public class MyViewModel : INotifyPropertyChanged
{
public ObservableCollection<SomeObject> Items
{
get { /* ... */ }
}
public SomeObject SelectedItem
{
get { /* ... */ }
set { /* ... */ }
}
}
查看:
<Window
x:Class="Project1.MainWindow">
<ComboBox
ItemsSource={Binding Items}
SelectedItem={Binding SelectedItem} />
</Window>
@AnatoliyNikolaev在之前的回答中详细说明了这个解决方案。
有时您必须对具有可见标题的复杂值进行操作。将它放在ViewModel中是没有意义的 - 更好地使用XAML功能。这就是它的样子:
<Window>
<Window.Resources>
<XmlDataProvider x:Key="YesNo" XPath="Items">
<x:XData>
<Items xmlns="">
<Item Header="Yes" Value="1"/>
<Item Header="No" Value="0"/>
</Items>
</x:XData>
</XmlDataProvider>
</Window.Resources>
<Grid>
<ComboBox
ItemsSource="{Binding Source={StaticResource YesNo},XPath=*,Mode=OneTime}"
SelectedValue="{Binding Value,UpdateSourceTrigger=PropertyChanged}"
SelectedValuePath="@Value"
DisplayMemberPath="@Header">
</Grid>
</Window>