web-dev-qa-db-ja.com

TextBlockでバインディングを使用してテキストをハードコーディングする

WPFでは、TextTextBlockプロパティに、ハードコードされたテキストと特定のバインディングの両方を含める方法はありますか?

私が心に留めているのは、次のようなものです(もちろん、以下はコンパイルされません)

<TextBlock Text="Number of Fans: {Binding Artist.Fans.Count}"></TextBlock>
49
Andreas Grech

.Net 3.5 SP1を使用している場合は、

<TextBlock Text="{Binding Path=Artist.Fans.Count, 
                 StringFormat='Number of Fans: {0}'}" />
87
Scott Weinstein

上記のアプローチを使用する場合:

<TextBlock Text="{Binding Path="Artist.Fans.Count", 
                  StringFormat='Number of Fans: {0}'}" />

StringFormat内で太字にする方法を見つけることができず、StringFormatでアポストロフィを使用できないという点で、多少制限的であることがわかりました。

代わりに、私はこのアプローチを採用しました。

<TextBlock TextWrapping="Wrap">
    <Run>The value</Run>
    <Run Text="{Binding Path=MyProperty1, Mode=OneWay}" FontWeight="Bold" />
    <Run>was invalid. Please enter it with the format... </Run>
    <LineBreak/><LineBreak/>
    <Run>Here is another value in the program</Run>
    <Run Text="{Binding Path=MyProperty2, Mode=OneWay}" FontWeight="Bold" />
</TextBlock>                    
34
doogie

使用する - Binding.StringFormat

<TextBlock Text="{Binding Artist.Fans.Count, StringFormat='Number of Fans: {0}'}"/>
4
Danko Durbić

ここでは、バインディング値(clouds.all)に「%」が追加されています。 「\ {0 \}」の後に任意の値を追加できます。

 <TextBlock Text="{Binding Path=clouds.all, StringFormat=\{0\}%}"/>
2
reza.cse08