如何在 XAML 中实例化 DataContext 对象
我希望能够在 XAML 中为 WPF StartupUri 窗口创建 DataContext
对象的实例,而不是创建它的代码,然后以编程方式设置 DataContext
属性。
主要原因是我不需要访问外部创建的对象,并且我不想仅仅为了设置 DataContext
而编写后面的代码。
我确定我已经在某处读过如何在 XAML 中实例化 DataContext
对象,但我无法在任何常用位置找到它......
I want to be able to create an instance of the DataContext
object for my WPF StartupUri window in XAML, as opposed to creating it code and then setting the DataContext
property programmaticly.
The main reason is I don't need to access the object created externally and I don't want to have to write code behind just for setting the DataContext
.
I'm sure I've read somewhere how to instantiate the DataContext
object in XAML but I can't find it in any of the usual places...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以为 DataContext 所在的任何命名空间添加 XML 命名空间,在窗口资源中创建它的实例并将 DataContext 设置为该资源:
You add an XML namespace for whatever namespace your DataContext lives in, create an instance of it in the Window Resources and set the DataContext to that resource:
您可以直接在 XAML 中为整个窗口指定这一点:
这会在别名为 local 的命名空间中创建一个名为“CustomViewModel”的视图模型,直接作为窗口的 DataContext。
You can just specify this directly in XAML for the entire Window:
This creates a view model named "CustomViewModel" in the namespace aliased to local, directly as the DataContext for the Window.
假设这段代码:
试试这个:
祝你好运!
Assuming this code:
Try this:
Best of luck!
如果您需要将 DataContext 设置为相同的控件类:
使用relativesource绑定。
或只是
如果想要分配与其自身不同的类的实例。
If you need to set the DataContext as same control class:
use RelativeSource binding.
or just
If want to assign an instance of different class than itself.