Random rdR=new Random();
int r=rdR.next(0,255);
Random rdG=new Random();
int g=rdG.next(0,255);
Random rdB=new Random();
int b=rdB.next(0,255);
button.backcolor=color.formargb(r,g,b);
------解决方案-------------------- 没必要
Random rdR=new Random();
int r=rdR.next(0,1 << 24 - 1);
button.backcolor=color.formargb(r);