如何从 XAML 中的静态成员引用属性?
假设我有两个这样的类:
public class LocalResources
{
public Color ForegroundColor { get; set; }
}
public static class OrganisationModule
{
public static LocalResources Resources = new LocalResources
{
ForegroundColor = Color.FromRgb(32, 32, 32)
};
}
在 XAML 代码中,为什么我不能这样做(假设所有正确的 xml 命名空间都存在)?
<TextBlock Foreground="{x:Static Modules:OrganisationModule.Resources.ForegroundColor}" />
编译时,出现错误:找不到类型“OrganizationModule.ColorManager”。请注意,类型名称区分大小写。
Lets say I have a two classes like this:
public class LocalResources
{
public Color ForegroundColor { get; set; }
}
public static class OrganisationModule
{
public static LocalResources Resources = new LocalResources
{
ForegroundColor = Color.FromRgb(32, 32, 32)
};
}
In XAML code, why can't I do this (assuming all the right xml namespaces exist)?
<TextBlock Foreground="{x:Static Modules:OrganisationModule.Resources.ForegroundColor}" />
When I compile, I get the error: Cannot find the type 'OrganisationModule.ColorManager'. Note that type names are case sensitive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里有两个错误。首先,在 OrganizationModule 类中,您需要提供资源作为属性。目前它不是一个属性,您需要编写 Get 和/或 Set
然后对于 Binding 我们需要以下表达式
There are two mistakes here. First in the OrganisationModule class you need to provide Resources as property. Currently it is not a property, you need to write Get and/or Set
Then for Binding we need below expression