在 Windows Phone 7 中设置辐射前景标题

发布于 2024-12-01 03:32:28 字数 94 浏览 3 评论 0原文

正如标题所说,我想为我的全景标题或全景项目标题设置辐射效果。 (一个例子是 Windows Phone 7 中的音乐+视频应用程序)我该怎么做?前景组只让我选择纯色画笔颜色。

As the title says, I want to set radiation effect for my panorama title, or panorama item title. (An example would be music+video app in windows phone 7) How can I do this? The set of foreground only let me choose solid brush color.

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

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

发布评论

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

评论(1

花落人断肠 2024-12-08 03:32:28

考虑学习如何使用 Expression Blend,因为解决此类问题要容易得多。

但无论如何,如果您在 XAML 中进行详细绑定,则可以即时创建任何画笔。您可以在 MSDN 上阅读更多信息

<TextBlock Text="Hello World">
    <TextBlock.Foreground>
        <RadialGradientBrush GradientOrigin="0.75,0.25">
            <GradientStop Color="Yellow" Offset="0.0" />
            <GradientStop Color="Orange" Offset="0.5" />
            <GradientStop Color="Red" Offset="1.0" />
        </RadialGradientBrush>
    </TextBlock.Foreground>
</TextBlock>

Consider learning how to use Expression Blend, as it's much easier for such problems.

But regardless of that, any brush can be created on-the-fly, if you do a verbose-binding in XAML. You can read more on MSDN

<TextBlock Text="Hello World">
    <TextBlock.Foreground>
        <RadialGradientBrush GradientOrigin="0.75,0.25">
            <GradientStop Color="Yellow" Offset="0.0" />
            <GradientStop Color="Orange" Offset="0.5" />
            <GradientStop Color="Red" Offset="1.0" />
        </RadialGradientBrush>
    </TextBlock.Foreground>
</TextBlock>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文