如何调用方法或使用xaml文件中另一个命名空间中另一个类中不同命名空间的变量?
答案 0 :(得分:0)
您可以在xaml根元素中添加对名称空间的引用,如下所示......
<UserControl
x:Class="MySolution.MyNamespace.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:another="clr-namespace:MySolution.AnotherNamespace">
然后,您可以在xaml中引用该命名空间内的对象,例如,我想将Button的Command属性绑定到AnotherNamespace中的命令...
<Button Command="{x:Static another:MyCommand}"/>
虽然我不知道你真正希望实现的目标,但我无法提供更多的帮助。