颜色渐变(GradIEnt)定义了颜色从一种颜色到另一种颜色的平滑过渡,引路蜂二维图形库支持线性和圆形渐变
private voID GradIEnts(){ /* The linear gradIEnt color */ linearGradIEntBrush brush1; /* The radial gradIEnt color */ RadialGradIEntBrush brush2; int[] fractions = new[] { 13,242 }; color[] colors = new[] { new color(0xffff6600,false),new color(0xffffff66,false) }; brush1 = new linearGradIEntBrush(50,50,150,125,fractions,colors,Brush.NoCycle); fractions = new int[] { 13,128,255 }; colors = new[]{new color(0xffff6600,new color(0xffff6600,false)}; brush2 = new RadialGradIEntBrush(90,100,colors); //Clear the canvas with white color. graphics2D.Clear(color.White); graphics2D.FillRectangle(brush1,new Rectangle(10,75,120,80)); Pen pen = new Pen(brush2,8); graphics2D.Drawoval(pen,20,60,50);}
以上是内存溢出为你收集整理的Silverlight 引路蜂二维图形库示例:颜色渐变全部内容,希望文章能够帮你解决Silverlight 引路蜂二维图形库示例:颜色渐变所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)