如何在 Silverlight 中使用自动宽度/高度获取文本元素周围的边框 +填充

发布于 2024-09-28 19:17:11 字数 622 浏览 4 评论 0原文

我现在所拥有的只是定义的宽度:

<Grid>
        <Rectangle Fill="#FFF5F7F9" HorizontalAlignment="Left" Height="80" Stroke="#FF565656" VerticalAlignment="Top" Width="128" RadiusY="15" StrokeThickness="3" RadiusX="15"/>
        <TextBlock HorizontalAlignment="Left" Height="47" TextWrapping="Wrap" Text="Draft" VerticalAlignment="Top" Width="106" FontSize="32" FontStyle="Italic" FontFamily="Verdana" Margin="20,21,0,0"/>
</Grid>

相当于 html 的东西(仅作为示例):

<div style="display:inline;border:solid 3px #000;padding:3px">
   Some text here
</div>

What I have at the moment is only defined width:

<Grid>
        <Rectangle Fill="#FFF5F7F9" HorizontalAlignment="Left" Height="80" Stroke="#FF565656" VerticalAlignment="Top" Width="128" RadiusY="15" StrokeThickness="3" RadiusX="15"/>
        <TextBlock HorizontalAlignment="Left" Height="47" TextWrapping="Wrap" Text="Draft" VerticalAlignment="Top" Width="106" FontSize="32" FontStyle="Italic" FontFamily="Verdana" Margin="20,21,0,0"/>
</Grid>

Something equivalent to html like (just for example):

<div style="display:inline;border:solid 3px #000;padding:3px">
   Some text here
</div>

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

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

发布评论

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

评论(1

夏九 2024-10-05 19:17:11

找到了...抱歉这个非常菜鸟的问题。

<Border
            BorderThickness="2"
            BorderBrush="Black"
            Background="AliceBlue"
            HorizontalAlignment="Left"
            VerticalAlignment="Top" Padding="10">

                <TextBlock>Hello World!</TextBlock>

        </Border>

Found it... sry for the very noob question.

<Border
            BorderThickness="2"
            BorderBrush="Black"
            Background="AliceBlue"
            HorizontalAlignment="Left"
            VerticalAlignment="Top" Padding="10">

                <TextBlock>Hello World!</TextBlock>

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