0

一部のテキストブロックでフェザー効果を使用したいと考えています。次のようになります。

 <TextBlock Text="Blacblabla" 
                Style="{StaticResource PhoneTextNormalStyle}"
                toolkit:TurnstileFeatherEffect.FeatheringIndex="0"/>

このテキストブロックを C# で完全に作成し、追加し(bla.Children.add(textblock1))ます。toolkit:TurnstileFeatherEffect.FeatheringIndexc# を使用してテキストブロックに追加するにはどうすればよいですか?

4

1 に答える 1

3

試していませんが、

TurnstileFeatherEffect.SetFeatheringIndex(textblock1, featheringIndex);

トリックを行う必要があります。featheringIndex設定するインデックスです。

于 2013-05-26T16:35:42.320 に答える