继承样式或以编程方式查找样式

发布于 2024-11-07 14:01:35 字数 278 浏览 0 评论 0原文

我有一个第三方控件,我认为它从某个地方获取了样式。 我有该控件的一个子类,我在其中添加了一个事件处理程序。但现在,当我用重写的控件替换 xaml 中的旧控件时,样式就会丢失。我假设它在应用样式时区分超类和子类。我如何告诉它子类(如 MyButton:ThirdPartyButton)应具有与 ThirdPartyButton 相同的样式。

或者是否有一种编程方式来查看样式的来源,例如

ThirdPartyButton.GetDefaultStyleLocation();

I have a third party control that I assume gets a style from somewhere.
I have an subclass of that control, where I add an event handler. but now when I replace the old control in xaml with my overrided control, the style gets lost. I assume that its distinguishing between the superclass and subclass when it applies the style. How do I tell it that subclasses, like MyButton:ThirdPartyButton, should have the same style as ThirdPartyButton.

Or is there a programmatic way to see the source of the style like

ThirdPartyButton.GetDefaultStyleLocation();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

挽清梦 2024-11-14 14:01:35

在隐式应用的资源中定义一个样式:

<Style TargetType="{x:Type local:MySubclass}"
       BasedOn="{StaticResource {x:Type thirdParty:Control}}"/>

这是必要的,因为遗憾的是样式不能被继承。

Define a style in the resources which is implicitly applied:

<Style TargetType="{x:Type local:MySubclass}"
       BasedOn="{StaticResource {x:Type thirdParty:Control}}"/>

This is necessary since styles are sadly not inherited.

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