how to change label color in WPF code example
Example 1: c# wpf change label text color
(name label).Foreground = new SolidColorBrush(Color.FromRgb(0, 0, 0));
Example 2: change text color wpf
Lable.Foreground="somecolor"
(name label).Foreground = new SolidColorBrush(Color.FromRgb(0, 0, 0));
Lable.Foreground="somecolor"