0

TextBlockWindows Phone アプリに があり、その値TextTextBlockプログラムで設定されるため、それを埋める文字列の大きさを知る方法はありません。現在、私はそのための静的サイズを持っていますTextBlockが、それを埋める文字列がそのサイズの外に出るとTextBlock. すると表示されません。

属性がサイズ/幅を超えるとサイズが変更されるTextBlockように、自動サイズ変更する方法はありますか?Text

前もって感謝します!

4

2 に答える 2

1

TextWrappingのプロパティを次のように設定しTextBlockますWrap

<TextBlock TextWrapping="Wrap"/>
于 2012-10-05T07:51:38.423 に答える
1

TextBlock ActualWidth property should return you the runtime width of the text.

So you can try this:

< TextBlock Width="{Binding RelativeSource={RelativeSource Self}, Path=ActualWidth}"
    Name="tb" Text="{Binding ElementName=txt, Path=Text}"/>
于 2012-10-05T09:32:13.680 に答える