通过数据模板在后备存储中为UI设置DependencyProperty - 后备存储未更新

时间:2016-03-01 12:48:00

标签: c# wpf datagrid dependency-properties

我的后备存储中包含InputEnabled属性的以下DP:

public EnableDisableSetting InputEnabled
{
    get { return (EnableDisableSetting)this.GetValue(InputEnabledProperty); }
    set { this.SetValue(InputEnabledProperty, value); }
}

public static readonly DependencyProperty InputEnabledProperty = DependencyProperty.Register("InputEnabled", typeof(EnableDisableSetting), typeof(EMSBasicDevice));//, new PropertyMetadata(EnableDisableSettings.Enabled));

我有另一个对象结构,其中填充了我们用来控制DataGrid的行和列的各种参数:

public class DeviceDisableEnable 
{
    private EnableDisableSetting _Individual_EnDis;

    public EnableDisableSetting Individual_EnDis
    {
        get { return _Individual_EnDis; }
        set { _Individual_EnDis = value; }
    }
}

(省略了大部分字段,仅显示相关字段)

在运行时,此结构使用后备存储中的值填充:

public void LoadDeviceDisable()
{
    DeviceDisableEnable dde;

    // Third Line
    dde = new DeviceDisableEnable(this);
    dde.RowHeight        = 21;
    dde.DataDescription  = this.Inputs[0].Name;
    dde.ZoneText         = InZoneID.ShortName;
    dde.LocationText     = Inputs[0].LocationTexts[0];
    dde.Individual_EnDis = this.Inputs[0].InputEnabled;
    dde.Ind_Enable_Text  = this.Inputs[0].InputEnabled.Description;
    dde.IsHeader         = false;
    dde.ShowIndEnable    = true;
    dde.ShowAllEnable    = true;
    DeviceDisablesList.Add(dde);

因此值dde.Individual_EnDis从DP获取后备存储值。这可以正常工作。

显示的结构用于在UI中构建DataGrid。结构中的每个条目代表网格中的一列。这是构建与此条目关联的列的代码:

// Add a component for the Enable/Disable property
DataGridTemplateColumn EnableCol = new DataGridTemplateColumn();
Binding IndivBind = new Binding("Individual_EnDis");
IndivBind.Mode    = BindingMode.TwoWay;
IndivBind.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
IndivBind.Converter = new EMSDevices.EnabledDisabledConverter();

Binding bind3 = new Binding("IsHeader");
bind3.Mode    = BindingMode.TwoWay;
bind3.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;

FrameworkElementFactory dtContent2 = new FrameworkElementFactory(typeof(EMS_Config_Tool.UIComponents.WPF.DeviceDisableWidget));
ImageTemplate = new DataTemplate();

EnableCol.CellTemplate          = ImageTemplate;
EnableCol.Width                 = new DataGridLength(140);
EnableCol.CanUserSort           = false;

ImageTemplate.VisualTree = dtContent2;

dtContent2.SetBinding(EMS_Config_Tool.UIComponents.WPF.DeviceDisableWidget.SetValueProperty, IndivBind);
dtContent2.SetValue(EMS_Config_Tool.UIComponents.WPF.DeviceDisableWidget.TextProperty, Properties.Resources.GroupEditor_Enabled);
dtContent2.SetValue(EMS_Config_Tool.UIComponents.WPF.DeviceDisableWidget.TitleProperty, Properties.Resources.Device_Edit_042);
dtContent2.SetBinding(EMS_Config_Tool.UIComponents.WPF.DeviceDisableWidget.TitleVisibilityProperty, bind3);

EnableCol.CellStyle        = visible_style;

TheDataGrid.Columns.Add(EnableCol);

这有点复杂,抱歉,但有一些有趣的显示需求超出了基本的DataGrid,所以这里有一些技巧来展示正确的东西。重要的一点是如何对Individual_EnDis结构中的DeviceDisableEnable属性进行绑定。 到目前为止一切都那么好,至少有一种方式,但至少有一种方式,但遗憾的是不是两种方式。通过单击Checkbox来更改UI中的值实际上更新了DDE结构中的设置---但是---最后是问题,后备存储不会更新,所以尽管有DP将属性包装在后备存储中,DP不会“通过”DDE结构以让后备存储由UI更新,换句话说,使用中间结构只显示财产,而不是财产本身。显然我需要更改DDE结构以正确引用后备存储DP属性,但现在该怎么办,我不知道。

1 个答案:

答案 0 :(得分:0)

哦亲爱的.....好吧,我已经回答了我自己的问题,显然我已经模糊了这个问题,而不是简单的解决它的明显解决方案。

如果从中间数据模板填充网格,则更改后备存储中的数据将不会对中间结构产生任何影响,除非该更新也是如此。因此,我需要做的就是使用新数据值更新中间结构,并调用[DataGrid] .Items.Refresh()和网格更新以显示新数据条目。当然,这可能不是最有效的,因为大多数行在此事务中不会改变,因此我需要做的只是在受影响的条目上调用Refresh方法,我已经知道它们是哪些,因为我只是更新了中间结构中的值。 最有可能的是,使用iNotifyPropertyChanged通知,我可以直接在后备存储中发生更改时刷新中间结构,然后将其传播到DataGrid。