Expression Blend 中的 Wpf 按钮文本

发布于 2024-09-10 13:59:13 字数 154 浏览 1 评论 0原文

通常,如果我在 C# Windows 窗体中使用按钮,并且如果按钮文本太长,它将转到下一行。 (例如,非常快乐,快乐将转到下一行)。但是当我在表达式混合中使用 wpf 应用程序时,即使我将自动大小设置为 false,文本也会被截断。 (例如,非常快乐,快乐将被截断)。任何建议将不胜感激。谢谢。

Normally, If i use the button in C# Windows form, and if the button text is too long, it will go to next line. (Eg. Very Happy, Happy will go to next line). But When i use wpf app in expression blend, the text will be truncated even though i set the auto size to false. (Eg. Very Happy, Happy will be truncated). Any advice would be really appreciated. Thank you.

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

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

发布评论

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

评论(1

超可爱的懒熊 2024-09-17 13:59:14

您需要在按钮内放置一个 TextBlock 并将 TextWrapping 属性设置为 Wrap

例子:

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="WpfApplication1.MainWindow"
    x:Name="Window"
    Title="MainWindow"
    Width="640" Height="480">

    <Grid x:Name="LayoutRoot">
        <Button HorizontalAlignment="Left" VerticalAlignment="Top" Width="40" Height="40">
            <TextBlock Text="Very Happy" TextWrapping="Wrap" />
        </Button>
    </Grid>
</Window>

You need to place a TextBlock inside your button and set the TextWrapping attribute to Wrap.

Example:

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="WpfApplication1.MainWindow"
    x:Name="Window"
    Title="MainWindow"
    Width="640" Height="480">

    <Grid x:Name="LayoutRoot">
        <Button HorizontalAlignment="Left" VerticalAlignment="Top" Width="40" Height="40">
            <TextBlock Text="Very Happy" TextWrapping="Wrap" />
        </Button>
    </Grid>
</Window>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文