- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 xaml 中构造对象时,DataContext 似乎大多数时候都能正确解析,但直接在附加属性的范围内构造同一对象似乎会阻止 DataContext 继承。
在这方面,有几个娱乐事件所需的定义。我很乐意展示代码,但为了简洁起见,这里是大纲:
ViewModel
,其属性 ViewModel.MyProperty
类型字符串设置为 "123456789abc"
class FrameworkObject : FrameworkElement
- 没有定义 UI,但有一个 DataContext。这个对象有一个定义的依赖属性,string FrameworkObject.MyDependencyProperty
AttachedProperty.FrameworkObject
,它采用 FrameworkObject
类型的对象创建对象作为可视化树中的元素成功绑定(bind)值
<!--
System.Windows.Data Warning: 56 : Created BindingExpression (hash=52203868) for Binding (hash=27504314)
System.Windows.Data Warning: 58 : Path: 'MyProperty'
System.Windows.Data Warning: 60 : BindingExpression (hash=52203868): Default mode resolved to OneWay
System.Windows.Data Warning: 61 : BindingExpression (hash=52203868): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 62 : BindingExpression (hash=52203868): Attach to StackOverflowExamples.FrameworkObject.MyProperty (hash=34181910)
System.Windows.Data Warning: 67 : BindingExpression (hash=52203868): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=52203868): Found data context element: FrameworkObject (hash=34181910) (OK)
System.Windows.Data Warning: 78 : BindingExpression (hash=52203868): Activate with root item ViewModel (hash=66824994)
System.Windows.Data Warning: 108 : BindingExpression (hash=52203868): At level 0 - for ViewModel.MyProperty found accessor RuntimePropertyInfo(MyProperty)
System.Windows.Data Warning: 104 : BindingExpression (hash=52203868): Replace item at level 0 with ViewModel (hash=66824994), using accessor RuntimePropertyInfo(MyProperty)
System.Windows.Data Warning: 101 : BindingExpression (hash=52203868): GetValue at level 0 from ViewModel (hash=66824994) using RuntimePropertyInfo(MyProperty): '123456789abc'
System.Windows.Data Warning: 80 : BindingExpression (hash=52203868): TransferValue - got raw value '123456789abc'
System.Windows.Data Warning: 89 : BindingExpression (hash=52203868): TransferValue - using final value '123456789abc'
-->
<local:FrameworkObject x:Name="CreatedInPanel" MyDependencyProperty="{Binding MyProperty, diag:PresentationTraceSources.TraceLevel=High}" />
<TextBlock local:AttachedProperty.FrameworkObject="{Binding Path='', ElementName=CreatedInPanel}" Style="{StaticResource DisplayFromAttached}" />
在 TextBlock 范围内创建对象无法正确绑定(bind)
<!--
System.Windows.Data Warning: 56 : Created BindingExpression (hash=53517805) for Binding (hash=3663598)
System.Windows.Data Warning: 58 : Path: 'MyProperty'
System.Windows.Data Warning: 60 : BindingExpression (hash=53517805): Default mode resolved to OneWay
System.Windows.Data Warning: 61 : BindingExpression (hash=53517805): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 62 : BindingExpression (hash=53517805): Attach to StackOverflowExamples.FrameworkObject.MyProperty (hash=51442863)
System.Windows.Data Warning: 67 : BindingExpression (hash=53517805): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=53517805): Found data context element: FrameworkObject (hash=51442863) (OK)
System.Windows.Data Warning: 71 : BindingExpression (hash=53517805): DataContext is null
System.Windows.Data Warning: 65 : BindingExpression (hash=53517805): Resolve source deferred
System.Windows.Data Warning: 67 : BindingExpression (hash=53517805): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=53517805): Found data context element: FrameworkObject (hash=51442863) (OK)
System.Windows.Data Warning: 71 : BindingExpression (hash=53517805): DataContext is null
System.Windows.Data Warning: 67 : BindingExpression (hash=53517805): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=53517805): Found data context element: FrameworkObject (hash=51442863) (OK)
System.Windows.Data Warning: 71 : BindingExpression (hash=53517805): DataContext is null
System.Windows.Data Warning: 67 : BindingExpression (hash=53517805): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=53517805): Found data context element: FrameworkObject (hash=51442863) (OK)
System.Windows.Data Warning: 71 : BindingExpression (hash=53517805): DataContext is null
System.Windows.Data Warning: 67 : BindingExpression (hash=53517805): Resolving source (last chance)
System.Windows.Data Warning: 70 : BindingExpression (hash=53517805): Found data context element: FrameworkObject (hash=51442863) (OK)
System.Windows.Data Warning: 78 : BindingExpression (hash=53517805): Activate with root item <null>
System.Windows.Data Warning: 106 : BindingExpression (hash=53517805): Item at level 0 is null - no accessor
System.Windows.Data Warning: 80 : BindingExpression (hash=53517805): TransferValue - got raw value {DependencyProperty.UnsetValue}
System.Windows.Data Warning: 88 : BindingExpression (hash=53517805): TransferValue - using fallback/default value ''
System.Windows.Data Warning: 89 : BindingExpression (hash=53517805): TransferValue - using final value ''
-->
<TextBlock Style="{StaticResource DisplayFromAttached}">
<local:AttachedProperty.FrameworkObject>
<local:FrameworkObject x:Name="CreatedInScope" MyDependencyProperty="{Binding MyProperty, diag:PresentationTraceSources.TraceLevel=High}" />
</local:AttachedProperty.FrameworkObject>
</TextBlock>
使用数据代理将解析绑定(bind),即使是在控件范围内创建也是如此
<!--
System.Windows.Data Warning: 56 : Created BindingExpression (hash=6968762) for Binding (hash=14964341)
System.Windows.Data Warning: 58 : Path: 'DataContext.MyProperty'
System.Windows.Data Warning: 60 : BindingExpression (hash=6968762): Default mode resolved to OneWay
System.Windows.Data Warning: 61 : BindingExpression (hash=6968762): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 62 : BindingExpression (hash=6968762): Attach to StackOverflowExamples.FrameworkObject.MyProperty (hash=47145209)
System.Windows.Data Warning: 67 : BindingExpression (hash=6968762): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=6968762): Found data context element: <null> (OK)
System.Windows.Data Warning: 78 : BindingExpression (hash=6968762): Activate with root item FrameworkElement (hash=339559)
System.Windows.Data Warning: 108 : BindingExpression (hash=6968762): At level 0 - for FrameworkElement.DataContext found accessor DependencyProperty(DataContext)
System.Windows.Data Warning: 104 : BindingExpression (hash=6968762): Replace item at level 0 with FrameworkElement (hash=339559), using accessor DependencyProperty(DataContext)
System.Windows.Data Warning: 101 : BindingExpression (hash=6968762): GetValue at level 0 from FrameworkElement (hash=339559) using DependencyProperty(DataContext): <null>
System.Windows.Data Warning: 106 : BindingExpression (hash=6968762): Item at level 1 is null - no accessor
System.Windows.Data Warning: 80 : BindingExpression (hash=6968762): TransferValue - got raw value {DependencyProperty.UnsetValue}
System.Windows.Data Warning: 88 : BindingExpression (hash=6968762): TransferValue - using fallback/default value ''
System.Windows.Data Warning: 89 : BindingExpression (hash=6968762): TransferValue - using final value ''
System.Windows.Data Warning: 96 : BindingExpression (hash=6968762): Got PropertyChanged event from FrameworkElement (hash=339559) for DataContext
System.Windows.Data Warning: 101 : BindingExpression (hash=6968762): GetValue at level 0 from FrameworkElement (hash=339559) using DependencyProperty(DataContext): ViewModel (hash=66824994)
System.Windows.Data Warning: 108 : BindingExpression (hash=6968762): At level 1 - for ViewModel.MyProperty found accessor RuntimePropertyInfo(MyProperty)
System.Windows.Data Warning: 104 : BindingExpression (hash=6968762): Replace item at level 1 with ViewModel (hash=66824994), using accessor RuntimePropertyInfo(MyProperty)
System.Windows.Data Warning: 101 : BindingExpression (hash=6968762): GetValue at level 1 from ViewModel (hash=66824994) using RuntimePropertyInfo(MyProperty): '123456789abc'
System.Windows.Data Warning: 80 : BindingExpression (hash=6968762): TransferValue - got raw value '123456789abc'
System.Windows.Data Warning: 89 : BindingExpression (hash=6968762): TransferValue - using final value '123456789abc'
-->
<ContentControl Content="{StaticResource DataProxy}" Visibility="Collapsed" />
<TextBlock Style="{StaticResource DisplayFromAttached}">
<local:AttachedProperty.FrameworkObject>
<local:FrameworkObject x:Name="DataProxyBinding" MyDependencyProperty="{Binding DataContext.MyProperty, Source={StaticResource DataProxy}, diag:PresentationTraceSources.TraceLevel=High}" />
</local:AttachedProperty.FrameworkObject>
</TextBlock>
最让我困惑的是。在 ContentControl.Content
中构建 FrameworkObject
似乎可以很好地绑定(bind)
<!--
System.Windows.Data Warning: 56 : Created BindingExpression (hash=63642613) for Binding (hash=38750844)
System.Windows.Data Warning: 58 : Path: 'MyProperty'
System.Windows.Data Warning: 60 : BindingExpression (hash=63642613): Default mode resolved to OneWay
System.Windows.Data Warning: 61 : BindingExpression (hash=63642613): Default update trigger resolved to PropertyChanged
System.Windows.Data Warning: 62 : BindingExpression (hash=63642613): Attach to StackOverflowExamples.FrameworkObject.MyProperty (hash=16347077)
System.Windows.Data Warning: 67 : BindingExpression (hash=63642613): Resolving source
System.Windows.Data Warning: 70 : BindingExpression (hash=63642613): Found data context element: FrameworkObject (hash=16347077) (OK)
System.Windows.Data Warning: 78 : BindingExpression (hash=63642613): Activate with root item ViewModel (hash=66824994)
System.Windows.Data Warning: 108 : BindingExpression (hash=63642613): At level 0 - for ViewModel.MyProperty found accessor RuntimePropertyInfo(MyProperty)
System.Windows.Data Warning: 104 : BindingExpression (hash=63642613): Replace item at level 0 with ViewModel (hash=66824994), using accessor RuntimePropertyInfo(MyProperty)
System.Windows.Data Warning: 101 : BindingExpression (hash=63642613): GetValue at level 0 from ViewModel (hash=66824994) using RuntimePropertyInfo(MyProperty): '123456789abc'
System.Windows.Data Warning: 80 : BindingExpression (hash=63642613): TransferValue - got raw value '123456789abc'
System.Windows.Data Warning: 89 : BindingExpression (hash=63642613): TransferValue - using final value '123456789abc'
-->
<ContentControl x:Name="ImplicitContent">
<ContentControl.Template>
<ControlTemplate TargetType="ContentControl">
<TextBlock local:AttachedProperty.FrameworkObject="{TemplateBinding Content}" Style="{StaticResource DisplayFromAttached}" />
</ControlTemplate>
</ContentControl.Template>
<local:FrameworkObject MyDependencyProperty="{Binding MyProperty, diag:PresentationTraceSources.TraceLevel=High}" />
</ContentControl>
通过这个,我使用了一种样式,DisplayFromAttached
,它可以在封闭面板的资源字典中找到并定义如下:
<Style x:Key="DisplayFromAttached" TargetType="TextBlock">
<Setter Property="Text" Value="{Binding Path=(local:AttachedProperty.FrameworkObject).MyDependencyProperty, RelativeSource={RelativeSource Self}}" />
<Style.Triggers>
<DataTrigger Binding="{Binding Path=(local:AttachedProperty.FrameworkObject).MyDependencyProperty, RelativeSource={RelativeSource Self}}" Value="">
<Setter Property="Text" Value="No value found" />
</DataTrigger>
</Style.Triggers>
</Style>
为什么 DataContext 无法继承到直接构造为附加属性的对象?
最佳答案
为什么会这样?
让我们记住 FrameworkElement.DataContext
是作为带有继承标志的 DependencyProperty
实现的(参见代码源 here,第 2704 行),因此,“继承”您正在谈论的 DataContext
是根据 documented inheritance rules 发生的:
Property value inheritance enables child elements in a tree of elements to obtain the value of a particular property from parent elements.
Property value inheritance is particularly about how property values can inherit from one element to another on the basis of the parent-child relationships within a tree of elements
在您的情况下,您的 TextBlock
与其 AttachedProperty.FrameworkObject
值之间没有这种父子关系,这不是 WPF 意义上的。它是附加属性还是非依赖属性这一事实实际上并没有影响。
对您的尝试的一些评论
Creating the object as an element in the Visual Tree successfully binds the value
是的,因为对象继承了与 TextBlock
相同的 DataContext
,因为它们在元素树中具有相同的父级。
Creating the object within the scope of the TextBlock fails to bind properly
是的,因为 TextBlock
不是元素树中对象的父级。 TextBlock
恰好包含对该对象的引用(我在这里隐藏了附加属性的复杂性)。
Using a data proxy will resolve the binding even when created in a control's scope
是的,因为该对象是 ContentControl
的子对象,它本身是具有正确 DataContext
的元素的子对象。
And the most confusing to me. Constructing the FrameworkObject within a ContentControl.Content seems to bind perfectly fine.
同上。
如果你真的需要你的对象在你的第二种情况下有一个DataContext
,你必须自己设置它,因为它不会自然继承:
<TextBlock x:Name="textBlock" Style="{StaticResource DisplayFromAttached}">
<local:AttachedProperty.FrameworkObject>
<local:FrameworkObject DataContext="{Binding ElementName=textBlock, Path=DataContext}" x:Name="CreatedInScope" MyDependencyProperty="{Binding MyProperty, diag:PresentationTraceSources.TraceLevel=High}" />
</local:AttachedProperty.FrameworkObject>
</TextBlock>
关于c# - 为什么 DataContext 无法继承构造为附加属性的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60079072/
我的一位教授给了我们一些考试练习题,其中一个问题类似于下面(伪代码): a.setColor(blue); b.setColor(red); a = b; b.setColor(purple); b
我似乎经常使用这个测试 if( object && object !== "null" && object !== "undefined" ){ doSomething(); } 在对象上,我
C# Object/object 是值类型还是引用类型? 我检查过它们可以保留引用,但是这个引用不能用于更改对象。 using System; class MyClass { public s
我在通过 AJAX 发送 json 时遇到问题。 var data = [{"name": "Will", "surname": "Smith", "age": "40"},{"name": "Wil
当我尝试访问我的 View 中的对象 {{result}} 时(我从 Express js 服务器发送该对象),它只显示 [object][object]有谁知道如何获取 JSON 格式的值吗? 这是
我有不同类型的数据(可能是字符串、整数......)。这是一个简单的例子: public static void main(String[] args) { before("one"); }
嗨,我是 json 和 javascript 的新手。 我在这个网站找到了使用json数据作为表格的方法。 我很好奇为什么当我尝试使用 json 数据作为表时,我得到 [Object,Object]
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我听别人说 null == object 比 object == null check 例如: void m1(Object obj ) { if(null == obj) // Is thi
Match 对象 提供了对正则表达式匹配的只读属性的访问。 说明 Match 对象只能通过 RegExp 对象的 Execute 方法来创建,该方法实际上返回了 Match 对象的集合。所有的
Class 对象 使用 Class 语句创建的对象。提供了对类的各种事件的访问。 说明 不允许显式地将一个变量声明为 Class 类型。在 VBScript 的上下文中,“类对象”一词指的是用
Folder 对象 提供对文件夹所有属性的访问。 说明 以下代码举例说明如何获得 Folder 对象并查看它的属性: Function ShowDateCreated(f
File 对象 提供对文件的所有属性的访问。 说明 以下代码举例说明如何获得一个 File 对象并查看它的属性: Function ShowDateCreated(fil
Drive 对象 提供对磁盘驱动器或网络共享的属性的访问。 说明 以下代码举例说明如何使用 Drive 对象访问驱动器的属性: Function ShowFreeSpac
FileSystemObject 对象 提供对计算机文件系统的访问。 说明 以下代码举例说明如何使用 FileSystemObject 对象返回一个 TextStream 对象,此对象可以被读
我是 javascript OOP 的新手,我认为这是一个相对基本的问题,但我无法通过搜索网络找到任何帮助。我是否遗漏了什么,或者我只是以错误的方式解决了这个问题? 这是我的示例代码: functio
我可以很容易地创造出很多不同的对象。例如像这样: var myObject = { myFunction: function () { return ""; } };
function Person(fname, lname) { this.fname = fname, this.lname = lname, this.getName = function()
任何人都可以向我解释为什么下面的代码给出 (object, Object) 吗? (console.log(dope) 给出了它应该的内容,但在 JSON.stringify 和 JSON.parse
我正在尝试完成散点图 exercise来自免费代码营。然而,我现在只自己学习了 d3 几个小时,在遵循 lynda.com 的教程后,我一直在尝试确定如何在工具提示中显示特定数据。 This code
我是一名优秀的程序员,十分优秀!