WPF/Silverlight XAML 拉伸文本大小以适合容器?

发布于 2024-07-24 15:58:24 字数 91 浏览 4 评论 0原文

我刚刚开始玩 WPF。

是否可以使用 Label 或 TextBlock 大小本身的文本大小来填充其父容器?

谢谢, 标记

I've just started to play with WPF.

Is it possible to have the size of the text of a Label or TextBlock size itself to fill it's parent container?

Thanks,
Mark

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

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

发布评论

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

评论(4

晌融 2024-07-31 15:58:24

您可以使用 ViewBox 来直观地缩放某些内容以适合其容器。 这里的其他解决方案也有效,但它们只是扩展了控制,而不是其内容。 ViewBox 将拉伸两者。

<!-- Big grid, will stretch its children to fill itself -->
<Grid Width="1000" Height="1000">
 <!-- The button is stretched, but its text remains teeny tiny -->
 <Button>
  <!-- The viewbox will stretch its content 
  to fit the final size of the button -->
  <Viewbox
      Margin="4"
      VerticalAlignment="Stretch"
      Height="Auto">
      <!-- The textblock and its contents are 
      stretched to fill its parent -->
      <TextBlock
          Text="Bartenders" />
  </Viewbox>
 </Button>
</Grid>

You can use a ViewBox to visually zoom something to fit within its container. The other solutions here work, but they only stretch the control, not its content. The ViewBox will stretch both.

<!-- Big grid, will stretch its children to fill itself -->
<Grid Width="1000" Height="1000">
 <!-- The button is stretched, but its text remains teeny tiny -->
 <Button>
  <!-- The viewbox will stretch its content 
  to fit the final size of the button -->
  <Viewbox
      Margin="4"
      VerticalAlignment="Stretch"
      Height="Auto">
      <!-- The textblock and its contents are 
      stretched to fill its parent -->
      <TextBlock
          Text="Bartenders" />
  </Viewbox>
 </Button>
</Grid>
一个人练习一个人 2024-07-31 15:58:24

依赖于父容器

Grid,DockPanel会拉伸你的控件
StackPanel、WrapPanel 会将其留给控件自行调整大小。

Depends on the parent container

Grid, DockPanel will stretch your control
StackPanel, WrapPanel will leave it to the control to size itself..

早乙女 2024-07-31 15:58:24

将水平对齐/垂直对齐设置为“拉伸”。

Set HorizonalAlignment/VerticalAlignment to "stretch".

绮筵 2024-07-31 15:58:24

使用 DockPanel 作为父容器

<DockPanel>
  <TextBlock />
</DockPanel>

Use DockPanel as parent container

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