1
我想更改我的Windows 8應用程序中網格背景的不透明度。在Windows 8中更改運行時網格的不透明度
grid1.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xA9, 0xAB, 0xAC));
grid1.Background.Opacity = 10;
我想讓這個顏色透明。我怎樣才能做到這一點?
我想更改我的Windows 8應用程序中網格背景的不透明度。在Windows 8中更改運行時網格的不透明度
grid1.Background = new SolidColorBrush(Color.FromArgb(0xFF, 0xA9, 0xAB, 0xAC));
grid1.Background.Opacity = 10;
我想讓這個顏色透明。我怎樣才能做到這一點?
答案很明顯,不透明度是從0(透明)到1(不透明)的雙重範圍。 10> 1,因此它是不透明的。我想你的意思是:
grid1.Background.Opacity = 0.1;