如何对同一元素应用多种效果

发布于 2024-08-13 00:23:10 字数 32 浏览 4 评论 0原文

我如何在同一元素上设置多种效果(例如阴影和模糊)。

How can i set mulitple effect like(shadow and blur) on same element.

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

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

发布评论

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

评论(3

不回头走下去 2024-08-20 00:23:10

请参阅在 WPF 中使用效果 (第 2 部分),作者:Greg Schechter,其中可以简单地像 Border 一样嵌套 Decorators,并在每个装饰器上放置不同的 Effect

See Using Effects in WPF (Part 2) by Greg Schechter where one can simply nest Decorators like a Border and put a different Effects on each.

寒尘 2024-08-20 00:23:10

要基于最初的答案并提供示例,只需将 UIElement 包含在另一个新的 UIElement 中(与此相关的任何元素,例如堆栈面板)。

然后对两个元素应用效果,如下所示:

<StackPanel>
    <MediaElement Name="myMedia" Source="Fairytale Dream.wmv" >
        <MediaElement.Effect>
            <ShaderEffectLibrary:BloomEffect />
        </MediaElement.Effect>
    </MediaElement>
    <StackPanel.Effect>
        <ShaderEffectLibrary:ZoomBlurEffect />
    </StackPanel.Effect>
</StackPanel>

To build on the initial answer and provide an example, just enclose the UIElement within another new UIElement (any element for that matter, like a stack panel for example).

Then apply effects for both elements as such:

<StackPanel>
    <MediaElement Name="myMedia" Source="Fairytale Dream.wmv" >
        <MediaElement.Effect>
            <ShaderEffectLibrary:BloomEffect />
        </MediaElement.Effect>
    </MediaElement>
    <StackPanel.Effect>
        <ShaderEffectLibrary:ZoomBlurEffect />
    </StackPanel.Effect>
</StackPanel>
べ繥欢鉨o。 2024-08-20 00:23:10

我认为这里没有必要组合效果。

其中一种效果将帮助您模拟其他效果
就像 DropShadow 效果一样,您可以使用 BlurRadius 实现模糊效果,使用 ShadowDepth 实现阴影。

通过使用适当的值,您可以模拟组合效果...

I think there is no need to combine effects here.

One of these effect will help you for simulating other effects
like in case of DropShadow Effect, You could use BlurRadius for Blur Effect and ShadowDepth for shadow..

By using appropriate values you could simulate combination effects...

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