我想改变我按钮的前景,但是我收到了一条错误,上面写着"名称'画笔'在当前上下文中不存在"
以下是代码:
private void AddButton_Click(object sender, RoutedEventArgs e)
{
Button but = new Button();
but.Content = "Task";
but.Background = (SolidColorBrush)Application.Current.Resources["PhoneAccentColor"];
but.Foreground = Brushes.Blue; //error here
TaskPanel.Children.Add(but);
}
另外,使用System.Drawings并不起作用。 我尝试了几种替代方案,但我的应用程序并没有识别Windows.UI.Colors。
答案 0 :(得分:1)
答案:
but.Foreground = new SolidColorBrush(Colors.Orange);