永发信息网

C#怎么填充颜色?

答案:3  悬赏:80  手机版
解决时间 2021-12-01 18:13
  • 提问者网友:捧腹剧
  • 2021-11-30 17:51
C#怎么填充颜色?
最佳答案
  • 五星知识达人网友:深街酒徒
  • 2021-11-30 18:08
for( int x = 0; x < flag.Width; ++x )
{
for( int y = 0; y < flag.Height; ++y )
{
//nowColor = flag.GetPixel(x,y);
myColor = Color.FromArgb(r,g,b);
flag.SetPixel(x, y, myColor);
}
}参考资料:http://topic.csdn.net/t/20040330/17/2904735.html
全部回答
  • 1楼网友:深街酒徒
  • 2021-11-30 18:36
属性backcolor
  • 2楼网友:何以畏孤独
  • 2021-11-30 18:17
定义一个颜色 和一个刷子
Color color=Color.FromArgb(r,g,b);
Brush brush=new SoildBrush(color)
再将刷子填充那地方就可以了
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯