2013-02-19 55 views
0

在窗口8的地鐵應用我加入使用XAML如下視窗8地鐵前景色和背景色的應用按鈕行爲

<Button Foreground="#FFF51A1A" Background="#FFEAE23A" BorderBrush="White" 
Height="100" Width="100" HorizontalAlignment="Center" Content="HELLO"/> 

和相同的按鈕我試圖如下動態添加一個按鈕

 Button shelfButton = new Button(); 

     shelfButton.Content = "HELLO"; 
     shelfButton.Foreground = FFF51A1A; 
     shelfButton.Background = FFEAE23A; 

     shelfButton.Height = 100; 
     shelfButton.Width = 100; 

     Grid.Children.Add(shelfButton); 

按鈕在前景和背景顏色方面的行爲是不同的。爲什麼這是這樣的?和 即使動態添加按鈕,如何具有與xaml類似的行爲。

+1

這不能成爲真正的代碼,因爲你必須設置畫筆的前景和背景。阿洛斯你的號碼不是十六進制 – thumbmunkeys 2013-02-19 13:25:05

回答