在 ListBoxItem 内对齐 TextBlock

发布于 2024-10-31 11:38:49 字数 407 浏览 0 评论 0原文

我正在开发一个 Windows Phone 7 应用程序。

我想将 ListBoxItem 内的文本块垂直居中。这是我的 XAML 代码:

<ListBoxItem x:Name="SingleGameItem" Height="79" Margin="10,5">
    <TextBlock HorizontalAlignment="Center" Height="31" Margin="5" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Center" Width="431" TextAlignment="Center"/>
</ListBoxItem>

我该怎么做?

I'm developing a Windows Phone 7 application.

I want to center vertically a textblock inside a ListBoxItem. Here is my XAML code:

<ListBoxItem x:Name="SingleGameItem" Height="79" Margin="10,5">
    <TextBlock HorizontalAlignment="Center" Height="31" Margin="5" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Center" Width="431" TextAlignment="Center"/>
</ListBoxItem>

How can I do that?

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

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

发布评论

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

评论(1

那支青花 2024-11-07 11:38:49

解决办法是:

<ListBox x:Name="Options" Margin="12,8,8,8" Grid.Row="1">
    <ListBoxItem x:Name="SingleGameItem" Height="79" Margin="10,5" VerticalAlignment="Center">
        <TextBlock HorizontalAlignment="Center" Height="31" Margin="5" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Center" Width="431" TextAlignment="Center"/>
    </ListBoxItem>
</ListBox>

对不起。

The solution is:

<ListBox x:Name="Options" Margin="12,8,8,8" Grid.Row="1">
    <ListBoxItem x:Name="SingleGameItem" Height="79" Margin="10,5" VerticalAlignment="Center">
        <TextBlock HorizontalAlignment="Center" Height="31" Margin="5" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Center" Width="431" TextAlignment="Center"/>
    </ListBoxItem>
</ListBox>

Sorry.

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