6

インターネットで検索しましたが、解決策が見つかりませんでした。以下のコードでテキストを折り返すために何かを見逃したと思います:

<Button x:Name="btnCustomerAging" Background="Green" BorderBrush="Green" Foreground="White" FontSize="33" Horizo​​ntalAlignment="Left" Margin="662,106,0,0" Grid.Row="1" VerticalAlignment="Top" Height="213" Width="238">

            <テキストラッピング>  

              顧客の所在地

            </TextWrapping>


</ボタン>
4

2 に答える 2

7

これは機能します。

<Button x:Name="btnCustomerAging" Background="Green" BorderBrush="Green" Foreground="White" FontSize="33" 
        HorizontalAlignment="Left" Margin="662,106,0,0" Grid.Row="1" VerticalAlignment="Top" Height="213" Width="238">
    <TextBlock Text="Customer Locations" TextWrapping="Wrap" />
</Button>
于 2013-09-04T03:03:51.180 に答える