gpt4 book ai didi

wpf - 在 DrawingImage 中绘制格式化文本

转载 作者:行者123 更新时间:2023-12-02 15:25:39 24 4
gpt4 key购买 nike

我试图在 XAML 中包含一些格式化文本作为绘图的一部分。这可能吗?它是如何完成的?

示例:

<DrawingImage>
<DrawingImage.Drawing>
<!-- Can text be drawn here? -->
</DrawingImage.Drawing>
</DrawingImage>

最佳答案

<DrawingImage>
<DrawingImage.Drawing>
<GeometryDrawing>
<GeometryDrawing.Geometry>
<RectangleGeometry Rect="0,0,10,10"></RectangleGeometry>
</GeometryDrawing.Geometry>
<GeometryDrawing.Brush>
<VisualBrush>
<VisualBrush.Visual>
<StackPanel>
<TextBlock Text="Tyco" FontSize="16" FontWeight="999" Foreground="Black"></TextBlock>
</StackPanel>
</VisualBrush.Visual>
</VisualBrush>
</GeometryDrawing.Brush>
</GeometryDrawing>
</DrawingImage.Drawing>
</DrawingImage>

关于wpf - 在 DrawingImage 中绘制格式化文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6712202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com