本文主要是介绍WPF—画刷(使用画刷实现背景颜色渐变效果),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
WPF—画刷(使用画刷实现背景颜色渐变效果)
在WPF中我们可以使用画刷来对我们的页面做出各种炫丽的效果,列如渐变,渲染等,
下列就为大家分享2个渐变效果示例:
实例1(由内到外)
<Grid><!--背景颜色渐变 画刷--><Grid.Background><!--RadialGradientBrush由内到外--><RadialGradientBrush><GradientStop Color="#ccd5f0"Offset="0"></GradientStop><GradientStop Color="#5d6b99"Offset="0.5"></GradientStop><GradientStop Color="#40568d"Offset="1"></GradientStop></RadialGradientBrush></Grid.Background>
</Grid>
效果:
实例2(左上角到右下角)
<Grid><!--背景颜色渐变 画刷--><Grid.Background><!--LinearGradientBrush 左上角到右下角渐变--><LinearGradientBrush><GradientStop Color="#ccd5f0"Offset="0"></GradientStop><GradientStop Color="#5d6b99"Offset="0.5"></GradientStop><GradientStop Color="#40568d"Offset="1"></GradientStop></LinearGradientBrush></Grid.Background>
</Grid>
效果:
这篇关于WPF—画刷(使用画刷实现背景颜色渐变效果)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!