如何设置 TextBlock 高度

发布于 2024-08-22 09:41:10 字数 207 浏览 7 评论 0原文

如何将 TextBlock 的高度绑定到父控件的高度?

我在网格内有一个 TextBlock,我想要 TextBlock Height & Width 为高度和宽度网格单元的宽度,无需对值进行硬编码。

干杯

AWC

How do I bind the height of TextBlock to the height of the parent control?

I have a TextBlock inside a grid and I want the TextBlock Height & Width to be the height & width of the grid cell without hard coding the values.

Cheers

AWC

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

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

发布评论

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

评论(4

娇纵 2024-08-29 09:41:10

Viewbox 是最简单的方法:

<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Grid>  
  <Viewbox>
   <TextBlock Text="Hello World"/>
   </Viewbox>
  </Grid>
</Page>

希望这个帮助,

干杯,Anvaka

Viewbox is the easiest way:

<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <Grid>  
  <Viewbox>
   <TextBlock Text="Hello World"/>
   </Viewbox>
  </Grid>
</Page>

Hope this helps,

Cheers, Anvaka

べ繥欢鉨o。 2024-08-29 09:41:10

当文本框位于网格中时,它会从网格单元的度量中获取其度量。

When a textbox is in a grid it gets its measures from the measures of the grid cell.

弱骨蛰伏 2024-08-29 09:41:10

这就是您正在寻找的:

<Grid >
 <Grid.RowDefinitions>
    <RowDefinition Height="*" />
 </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
  <TextBlock x:Name="SelectedUserName" Grid.Row="0" Grid.Column="0" ></TextBlock>
 </Grid>

Here it is what u are looking for :

<Grid >
 <Grid.RowDefinitions>
    <RowDefinition Height="*" />
 </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
  <TextBlock x:Name="SelectedUserName" Grid.Row="0" Grid.Column="0" ></TextBlock>
 </Grid>
清风疏影 2024-08-29 09:41:10

您是否尝试过 TextBlock

VerticalAlignment="Stretch" HorizontalAlignment="Stretch"

默认情况下!

Did you try on TextBlock:

VerticalAlignment="Stretch" HorizontalAlignment="Stretch"

Which is by default!

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