在运行时将DataTable绑定到WPF MVVM中的Datagrid

时间:2016-01-20 10:45:53

标签: c# wpf xaml mvvm datagrid

我正在使用MVVM设计模式开发一个WPF应用程序,在我的第一个窗口中,我希望显示一个使用文本框的选定文本创建的数据网格This is a preview of what i want to do

在我的ViewModel中,我实现了一个方法,用selectedText填充数据表,然后将其绑定到DataGrid,但My DataGrid不显示任何内容。 这是我的方法

 void selectColumn(object parameter)
{
    string selText = SelectedText;
    if (i == 0)
    {
        var lines = File.ReadAllLines(TextProperty1);
        datatable.Columns.Add("Column" + i + "");
        foreach (string line in lines)
        {
            DataRow newRow = datatable.NewRow();

            newRow["Column" + i + ""] = line.Substring(0, selText.Length);

            datatable.Rows.Add(newRow)
        }
        i++;
    }
    else
    {

        datatable.Columns.Add("Column" + i + "");
        var lines = File.ReadAllLines(TextProperty1);

        foreach (DataRow draw in datatable.Rows)
        {
            draw["Column" + i + ""] = lines[datatable.Rows.IndexOf(draw)].Substring(lines[2].IndexOf(selText), selText.Length);
        }

        TblData2 = datatable;
        i++;
    }

    TblData2 = datatable;
    TextProperty2 = TextProperty2.Remove(0, selText.Length);
}

并且在Window中这就是我绑定Datagrid的方式

<TextBox x:Name="txt" Text="{Binding TextProperty2, UpdateSourceTrigger=PropertyChanged}">
        <i:Interaction.Behaviors>
            <i:DependencyPropertyBehavior PropertyName="SelectedText" EventName="SelectionChanged" Binding="{Binding SelectedText, Mode=TwoWay}"/>
        </i:Interaction.Behaviors>
    </TextBox>
    <Button x:Name="Tex"  Content="Select Column" Command="{Binding SelectedColumnCommand}"/>
    <DataGrid x:Name="DtGrid"  ItemsSource="{Binding TblData2}"/>

这是数据表

DataTable _dataTable2;
    public DataTable TblData2
    {
        get { return _dataTable2; }
        set
        {
            _dataTable2 = value;
            RaisePropertyChanged("TblData");
        }
    }

2 个答案:

答案 0 :(得分:4)

尝试在ViewModel中输入以下代码。

1.添加一个包含所有选定文本的ObservableCollection属性

ObservableCollection<string> _SelectedTexts; 

public ObservableCollection<string> SelectedTexts
{
    get { return _SelectedTexts; }
    set
    {
       _SelectedTexts; = value;
       RaisePropertyChanged("SelectedTexts");
    }
} 

public YourViewModelConstructor
{

    SelectedTexts = new ObservableCollection<string>();
}

2.在ObservableCollection中添加所选文本

public void AddSelectedText(string selectedText)
{

     SelectedTexts.Add(selectedText);


}

3.xaml数据绑定

<DataGrid x:Name="DtGrid"  ItemsSource="{Binding SelectedTexts}"/>

答案 1 :(得分:1)

我没有检查所有代码但是将ItemsSource绑定到某个属性,然后在运行时更改该属性将不起作用,您将不得不使用ObservableCollection。希望它有所帮助。