Code-Behind:
public class TestVariableClass
{
List<string> States;
public TestVariableClass()
{
States = new List<string> { "MP", "CG"};
}
}
XAML:
<Window x:Class="TestApplication.MainWindow"
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:TestApplication"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:TestVariableClass x:Key="StatesInIt"/>
</Window.Resources>
<Grid>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" DataContext="{StaticResource StatesInIt}">
<Label>States</Label>
<ComboBox Width="140" Margin="5" x:Name="comboBoxStates" ItemsSource="{Binding States}"></ComboBox>
</StackPanel>
</Grid>
当我运行应用程序时,我根本看不到我的comboBox字段被填充。我的数据绑定方式是否正确? 我试图将此comboBox与我的数据库列连接。但在尝试了几件事之后,我意识到错误在于绑定本身。
答案 0 :(得分:1)
您在模型类中绑定的内容需要是该类的公共属性:
private List<string> _states;
public List<string> States { get { return _states; } }
作为备注,您将无法修改状态集合并使其在视图中自动更新。为此,您可以使用ObservableCollection而不是List。您可能不需要该功能。