Windows Phone 7でこれを行う方法はありますか?
C#コードでTextBlockを参照できますが、前景色を設定する方法が正確にわかりません。
myTextBlock.Foreground =
//not a clue...
ありがとう
Windows Phone 7でこれを行う方法はありますか?
C#コードでTextBlockを参照できますが、前景色を設定する方法が正確にわかりません。
myTextBlock.Foreground =
//not a clue...
ありがとう
textBlock.Foreground = new SolidColorBrush(Colors.White);
前景にはブラシが必要なので、使用できます
textBlock.Foreground = Brushes.Navy;
RGBまたはARGBの色を使用する場合は、
textBlock.Foreground = new System.Windows.Media.SolidColorBrush(System.Windows.Media.Color.FromArgb(100, 255, 125, 35));
また
textBlock.Foreground = new System.Windows.Media.SolidColorBrush(Colors.Navy);
16進数から色を取得するには
textBlock.Foreground = new System.Windows.Media.SolidColorBrush((Color)ColorConverter.ConvertFromString("#FFDFD991"));
Brushes.White
前景を設定するために使用できます。
myTextBlock.Foreground = Brushes.White;
Brushes
クラスは名前System.Windows.Media
空間にあります。
Ctrlまたは、カーソルが不明なクラス名にあるときに+を押すと、ディレクティブ.が自動的に追加されます。using