在 WPF 中设置样式属性时出错

发布于 2024-12-29 14:52:03 字数 1121 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吐个泡泡 2025-01-05 14:52:04

其他人也遇到了同样的问题此处,虽然我不太喜欢给出的答案。

Someone else faced the same problem here, though I don't really like the given answer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文