如何使用DataContext?

时间:2013-06-13 00:02:45

标签: wpf data-binding datacontext

我想要做的只是让一个组合框填充来自sqlite表的数据。虽然我已经使用代码方法完成了这项工作,但我真的很喜欢这样做,我可以看到更好的WPF方式。

根据我的理解,流程应该是这样的:

我应该有一个包含数据的类,我创建了一个快速类,默认构造函数将连接到数据库并将其结果转储到如下列表:

internal class mainmenusql
{
    private List<string> _Jobs;

    public mainmenusql()
    {
        SQLiteConnection conn = new SQLiteConnection();
        conn.ConnectionString = "Data Source=C:\\Users\\user\\Documents\\db.sqlite;Version=3";

        try
        {
            conn.Open();
            SQLiteDataReader reader;
            SQLiteCommand command = new SQLiteCommand(conn);
            command.CommandType = CommandType.Text;
            command.CommandText = "SELECT * FROM Tasks";
            reader = command.ExecuteReader();

            if (reader.HasRows)
            {
                while (reader.Read())
                {
                    _Jobs.Add(reader.GetValue(0).ToString());
                }
            }
            else
            {
                MessageBox.Show("No records");
            }

        }
        catch (Exception err)
        {
            MessageBox.Show(err.Message);
        }
        finally
        {
            conn.Close();
        }
    }
}

列表中存在一些错误“对象引用未设置为对象的实例”。

但无论如何,下一步应该是将表单的DataContext设置为此对象吗?

    public MainWindow()
    {
        DataContext = new mainmenusql();
        InitializeComponent();
    }

最后组合框应该有绑定权吗?

<Window x:Class="sqliteDatacontext.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <ComboBox DataContext="{Binding Path=_Jobs}" HorizontalAlignment="Left" Margin="141,124,0,0" VerticalAlignment="Top" Width="120"/>
    </Grid>
</Window>

我在这里做错了什么?

1 个答案:

答案 0 :(得分:3)

要绑定到某个datacontext,需要通过public getter / setter公开...

public class mainmenusql
{
    public List<string> _Jobs
    { get ; protected set; }   


    public mainmenusql()
    {
       _Jobs = new List<string>();

       // rest of populating your data
    }
}

窗口控件中的绑定是ItemsSource

<ComboBox ItemsSource="{Binding Path=_Jobs}" />

“DataContext”应用于整个窗口......以此为基础,您的任何控件都可以将其元素“绑定”到您的数据上下文中几乎任何“公开”可用的内容......在这种情况下,一个ComboBox选项列表来自它的“ItemSource”属性......所以你希望ITEMSOURCE指向你的_Jobs。