如何以编程方式将带有文本块的装饰器添加到画布?

发布于 2024-10-11 03:55:29 字数 534 浏览 4 评论 0原文

我正在跟踪包含此 xaml 的代码示例,但如何以编程方式构建此代码并将其添加到画布中?

<custom:BalloonDecorator Background="{StaticResource MessageOutBackground}" PointerLength="10"
CornerRadius="5" Margin="10,0,0,0"
HorizontalAlignment="left">
<Border Background="{StaticResource Hilight}" CornerRadius="5">
<Border Background="{StaticResource HilightBottom}"
CornerRadius="5">
<TextBlock Text="Hello" HorizontalAlignment="Left" VerticalAlignment="Top"/>
</Border>
</Border>
</custom:BalloonDecorator>

I'm following a code sample that has this xaml, but how can I construct this programmatically and add it to a canvas?

<custom:BalloonDecorator Background="{StaticResource MessageOutBackground}" PointerLength="10"
CornerRadius="5" Margin="10,0,0,0"
HorizontalAlignment="left">
<Border Background="{StaticResource Hilight}" CornerRadius="5">
<Border Background="{StaticResource HilightBottom}"
CornerRadius="5">
<TextBlock Text="Hello" HorizontalAlignment="Left" VerticalAlignment="Top"/>
</Border>
</Border>
</custom:BalloonDecorator>

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

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

发布评论

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

评论(1

简单 2024-10-18 03:55:29

使其成为窗口(或其他东西)的资源:

<Window.Resources>
    <custom:BalloonDecorator x:Key="MyDecorator" Background="{StaticResource MessageOutBackground}" PointerLength="10"
    ...
    </custom:BalloonDecorator>
</Window.Resources>

然后在如下代码中获取它:

BalloonDecorator myDecorator = FindResource("MyDecorator") as BalloonDecorator;

Make it a resource of the window (or something else):

<Window.Resources>
    <custom:BalloonDecorator x:Key="MyDecorator" Background="{StaticResource MessageOutBackground}" PointerLength="10"
    ...
    </custom:BalloonDecorator>
</Window.Resources>

Then get it in code like this:

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