我有一个带有WPF数据网格的用户控件。我使用Element Host在Windows窗体中使用了此用户控件。
我可以使用ListCollectionView将数据绑定到用户控件,但是当我对datagrid进行更新时,更改不会被反射回来。
我设置Mode = TwoWay但没有用。
有什么想法吗?
以下是我的代码示例:
UserControl.xaml
<my:DataGrid ItemsSource="{Binding}"
HorizontalScrollBarVisibility="Hidden" SelectionMode="Extended"
CanUserAddRows="False" CanUserDeleteRows="False"
CanUserResizeRows="False" CanUserSortColumns="False"
AutoGenerateColumns="False"
RowHeaderWidth="20" RowHeight="25" Width="Auto" Height="Auto"
RowStyle="{StaticResource RowSelected1}"
CellStyle="{StaticResource RowSelected}"
GridLinesVisibility="Horizontal" >
<my:DataGrid.GroupStyle>
<GroupStyle ContainerStyle="{StaticResource GroupHeaderStyle1}">
<GroupStyle.Panel>
<ItemsPanelTemplate>
<my:DataGridRowsPresenter/>
</ItemsPanelTemplate>
</GroupStyle.Panel>
</GroupStyle>
</my:DataGrid.GroupStyle>
<my:DataGrid.Columns>
<Controls:LabelTextBoxColumn Header="Tread BarCode" Width="2*"
HorizontalAlignment="Left" VerticalAlignment="Center"
ElementStyle="{StaticResource BaseLabelCellStyle}"
EditingElementStyle="{StaticResource BaseTextBoxCellStyle}"
Binding="{Binding Name,Mode=TwoWay}"/>
我的Windows窗体frm1中的代码是:
this.sdaTrueName.Fill(this.dstrueSrch1.dtTrue);
view = new ListCollectionView(this.dstrueSrch1.dtTrue.ToList());
view.GroupDescriptions.Add(new PropertyGroupDescription("Name"));
UserControlABC.DataContext = view;
我必须将数据保存回我的数据库。我正在使用数据集和数据表。
请帮我解决任何想法?
我试图调试我的程序,我在输出窗口中收到错误。
System.Windows.Data Warning: 52 : Created BindingExpression (hash=19378226) for Binding (hash=19699911)
System.Windows.Data Warning: 54 : Path: 'IsEnabled'
System.Windows.Data Warning: 56 : BindingExpression (hash=19378226): Default mode resolved to OneWay
System.Windows.Data Warning: 57 : BindingExpression (hash=19378226): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 58 : BindingExpression (hash=19378226): Attach to System.Windows.Controls.TextBox.IsEnabled (hash=56309765)
System.Windows.Data Warning: 63 : BindingExpression (hash=19378226): Resolving source
System.Windows.Data Warning: 66 : BindingExpression (hash=19378226): Found data context element: TextBox (hash=56309765) (OK)
System.Windows.Data Warning: 67 : BindingExpression (hash=19378226): DataContext is null
System.Windows.Data Warning: 61 : BindingExpression (hash=19378226): Resolve source deferred
System.Windows.Data Warning: 63 : BindingExpression (hash=19378226): Resolving source
System.Windows.Data Warning: 66 : BindingExpression (hash=19378226): Found data context element: TextBox (hash=56309765) (OK)
System.Windows.Data Warning: 74 : BindingExpression (hash=19378226): Activate with root item dataTableExtrRow (hash=24854661)
System.Windows.Data Warning: 104 : BindingExpression (hash=19378226): At level 0 - for dataTableExtrRow.IsEnabled found accessor <null>
System.Windows.Data Error: 39 : BindingExpression path error: 'IsEnabled' property not found on 'object' ''dataTableExtrRow' (HashCode=24854661)'.
BindingExpression:Path=IsEnabled; DataItem='dtextruderWindupRow' (HashCode=24854661); target element is 'TextBox' (Name=''); target property is 'IsEnabled' (type 'Boolean')
System.Windows.Data Warning: 76 : BindingExpression (hash=19378226): TransferValue - got raw value {DependencyProperty.UnsetValue}
System.Windows.Data Warning: 84 : BindingExpression (hash=19378226): TransferValue - using fallback/default value 'True'
System.Windows.Data Warning: 85 : BindingExpression (hash=19378226): TransferValue - using final value 'True'"
以下是我的用户控件的资源窗口中的XAML代码:
<Style x:Key="BaseTextBoxCellStyle" TargetType="{x:Type TextBox}">
<Setter Property="IsEnabled" Value="{Binding
IsEnabled,diag:PresentationTraceSources.TraceLevel=High}"/>
</Style>
<Style x:Key="BaseLabelCellStyle" TargetType="{x:Type Label}">
<Setter Property="IsEnabled" Value="{Binding IsEnabled}"/>
<Setter Property="Margin" Value="0,-3,0,0"/>
</Style>
这是我的WPF DataGrid中的代码:
<Controls:LabelTextBoxColumn
Header="Tread BarCode" Width="2*"
HorizontalAlignment="Left" VerticalAlignment="Center"
ElementStyle="{StaticResource BaseLabelCellStyle}"
EditingElementStyle="{StaticResource BaseTextBoxCellStyle}"
Binding="{Binding rollCallID,Mode=TwoWay}"/>
我无法理解这个错误。
答案 0 :(得分:1)
您的数据源是否实现了INotifyCollectionChanged?否则WPF不知道有什么不同。
答案 1 :(得分:0)
可能是由于多种原因......这里没有足够的信息。
答案 2 :(得分:0)
尝试将“UpdateSourceTrigger=LostFocus
”添加到LabelTextBoxColumn
。
另外,尽量不要从Code-Behind填充数据集。将数据集绑定到列表框时遇到了类似的问题。我会更改Listbox
中的值,并且更改永远不会从源中反映出来。我发现我继续使用旧值填充数据集。
我还忘记做的是明确更新数据库。我的Code-Behind,在进行更改后,请调用DatasetTableAdapter.Update()
方法。
我不需要实施INotifyPropertyChanged
。