我想从Code Behind更改Page的背景颜色。 但我不知道该怎么做。
请告诉我如何编写有关更改背景颜色的代码。
我使用Visual Studio 2015 C#XAML环境。
答案 0 :(得分:3)
要在代码后面设置页面的背景颜色,我们应该从xaml获取页面对象。因此,为页面添加x:Name属性,并从后面的代码设置背景颜色。
XAML代码
<Page ... x:Name="thispage">
代码背后
SolidColorBrush redbrush=new SolidColorBrush(Colors.Red);//your color
thispage.Background = redbrush;