在 WPF 中设置样式属性时出错
我正在使用 WPF Toolkit Extended MessageBox ,
基于此页面, http://wpftoolkit.codeplex.com/discussions /234113 ,我想更改 MessageBox 的 Ok 属性。 我的问题是我无法为 Style 设置 TargetType, 我使用过:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:extToolkit="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit.Extended"
>
<Style TargetType="{x:Type extToolkit:MessageBox}">
<Setter Property="OkButtonContent" Value ="[Custom OK]"/>
</Style>
它在 exToolkit:MessagBox 中给了我错误,并说找不到类型“exToolkit:MessageBox”。
我添加了对 Assembly WPFToolkit.Extended 、 WPFToolkit.Extended.dll 的引用,但没有区别。
当我在 extoolkit 之后按 ':' 时,它显示其他类(类型),但不显示 MessageBox。
我可以
Microsoft.Windows.Controls.MessageBox.Show("some test");
在我的项目中调用。
I'm using WPF Toolkit Extended MessageBox ,
base on this page , http://wpftoolkit.codeplex.com/discussions/234113 , I want to Change Ok Property of MessageBox.
my problem is that I can not set TargetType for Style,
I used :
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:extToolkit="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit.Extended"
>
<Style TargetType="{x:Type extToolkit:MessageBox}">
<Setter Property="OkButtonContent" Value ="[Custom OK]"/>
</Style>
it gives me Error in exToolkit:MessagBox , and says Type 'exToolkit:MessageBox' not found.
I added Refrence to Assembly WPFToolkit.Extended , WPFToolkit.Extended.dll but no difference.
When I press ':' after extoolkit it shows other Classes(Types),but does not show MessageBox.
I can Call
Microsoft.Windows.Controls.MessageBox.Show("some test");
in my project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其他人也遇到了同样的问题此处,虽然我不太喜欢给出的答案。
Someone else faced the same problem here, though I don't really like the given answer.