2010-10-29 89 views
2

好的,所以我对WPF和数据绑定相当陌生,但是我已经搜索并搜索了,似乎无法找到对此的答案。双向绑定到数据集 - 更新数据库?

我有一个数据库(称为库存)和一个数据集(称为DevicesDataSet)。我正在尝试将数据集绑定到列表框,以便可以选择DevicesDataSet的Devices表中的特定设备,并将其属性显示在TextBox中进行编辑。

以下是XAML我迄今为止:

<Window x:Class="Inventory.SignOutDevice" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="SignOutDevice" Height="339" Width="392" xmlns:my="clr-namespace:Inventory" Loaded="Window_Loaded"> 
<Window.Resources> 
    <my:DevicesDataSet x:Key="devicesDataSet" /> 
    <CollectionViewSource x:Key="devicesViewSource" Source="{Binding Path=Devices, Source={StaticResource devicesDataSet}}" /> 
</Window.Resources> 
<Grid DataContext="{StaticResource devicesViewSource}"> 
    <ListBox Height="237" HorizontalAlignment="Left" Margin="12,12,0,0" Name="listBox1" 
      VerticalAlignment="Top" Width="254" ItemsSource="{Binding}" SelectedValuePath="Selected"> 
     <ListBox.ItemTemplate> 
      <DataTemplate> 
       <TextBlock Text="{Binding Path=Make}"/> 
      </DataTemplate> 
     </ListBox.ItemTemplate> 
    </ListBox> 
    <TextBox Margin="223,267,0,0" Text="{Binding Path=Make, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/> 
</Grid> 

每当一个装置被选择和属性被编辑(我只显示此刻一个特性),列表框已更新,但数据集(数据库?)似乎不是。也就是说,当我离开表单然后回到它时,列表框会返回到它的原始状态。

所以我想问题是:我如何使这些更改持久/写入数据库?

编辑:DERP,这里是更新后的后端C#:

using System.Windows; 
using System.Data; 
namespace Inventory 
{ 
    public partial class SignOutDevice : Window 
    { 
     DevicesDataSet devicesDataSet = null; 
     Inventory.DevicesDataSetTableAdapters.DevicesTableAdapter devicesDataSetDevicesTableAdapter = null; 
     public SignOutDevice() 
     { 
      InitializeComponent(); 
     } 
     private void Window_Loaded(object sender, RoutedEventArgs e) 
     { 
      devicesDataSet = ((Inventory.DevicesDataSet)(this.FindResource("devicesDataSet"))); 
      devicesDataSetDevicesTableAdapter = new Inventory.DevicesDataSetTableAdapters.DevicesTableAdapter(); 
      devicesDataSetDevicesTableAdapter.Fill(devicesDataSet.Devices); 
      System.Windows.Data.CollectionViewSource devicesViewSource = ((System.Windows.Data.CollectionViewSource)(this.FindResource("devicesViewSource"))); 
      devicesViewSource.View.MoveCurrentToFirst(); 
     } 

     private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) 
     { 
      devicesDataSet.AcceptChanges(); 
      devicesDataSetDevicesTableAdapter.Update(devicesDataSet.Tables["Devices"].Select(null, null, DataViewRowState.Deleted)); 
      devicesDataSetDevicesTableAdapter.Update(devicesDataSet.Tables["Devices"].Select(null, null, DataViewRowState.ModifiedCurrent)); 
      devicesDataSetDevicesTableAdapter.Update(devicesDataSet.Tables["Devices"].Select(null, null, DataViewRowState.Added)); 
     } 

    } 
}

回答

0

好吧,算出来。在devicesDataSetDevicesTableAdapter中发现自动生成的Update()方法实际上没有做任何事情。使用查询向导创建了一个自定义方法,现在一切正常。

0

您是否在输出窗口看着检查装订错误?因为它看起来像你有一个。 TextBox绑定到Make属性,但其DataContextdevicesViewSource资源。没有任何内容与ListBox中的选定项目相关联。

将两者联系起来的方法是指定ListBox的名称,然后将TextBox上的绑定设置为{Binding ElementName=MyListBox, Path=Make, Mode=TwoWay}

+0

该部分工作得很好,当我编辑文本框时,ListBox也被更新。我的问题不在于界面,而是数据库未被更新。此外,ListBox已经有一个名称:“listBox1”。 – 2010-10-29 18:12:35