私はこのlibを使用します:http : //winrtxamltoolkit.codeplex.com/ WatermarkTextのFontSizeを指定したいのですが、どうすればよいですか?
ありがとう
私はこのlibを使用します:http : //winrtxamltoolkit.codeplex.com/ WatermarkTextのFontSizeを指定したいのですが、どうすればよいですか?
ありがとう
Watermark
プロパティの代わりにプロパティを使用しWatermarkText
て、透かしとして必要なものをすべて配置できます。たとえば、TextBlock
必要なプロパティを使用できます。WatermarkTextStyle
使用時にプロパティを使用して、提供された透かしで使用するようにWatermarkText
指定することもできます-次のようなものです。Style
TextBlock
<xc:WatermarkTextBox
WatermarkText="Type something">
<xc:WatermarkTextBox.WatermarkTextStyle>
<Style
TargetType="TextBlock">
<Setter
Property="FontSize"
Value="18" />
...
サンプルをチェックして、ここでいくつかのオプションを確認できます。