第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

請教PictureBox PaintEvent與其他方法

請教PictureBox PaintEvent與其他方法

猛跑小豬 2019-08-02 07:02:25
PictureBox PaintEvent與其他方法我的表單中只有一個PictureBox,我想在這個PictureBox上畫一個方法,但是我不能這樣做,不能工作。方法是:private Bitmap Circle()     {         Bitmap bmp;         Graphics gfx;         SolidBrush firca_dis=new SolidBrush(Color.FromArgb(192,0,192));             bmp = new Bitmap(40, 40);             gfx = Graphics.FromImage(bmp);             gfx.FillRectangle(firca_dis, 0, 0, 40, 40);         return bmp;     }圖片盒 private void pictureBox2_Paint(object sender, PaintEventArgs e)     {         Graphics gfx= Graphics.FromImage(Circle());         gfx=e.Graphics;     }
查看完整描述

2 回答

?
慕慕森

TA貢獻(xiàn)1856條經(jīng)驗 獲得超17個贊

private static void DrawCircle(Graphics gfx){    
    SolidBrush firca_dis = new SolidBrush(Color.FromArgb(192, 0, 192));
    Rectangle rec = new Rectangle(0, 0, 40, 40); //Size and location of the Circle

    gfx.FillEllipse(firca_dis, rec); //Draw a Circle and fill it
    gfx.DrawEllipse(new Pen(firca_dis), rec); //draw a the border of the cicle your choice}




查看完整回答
反對 回復(fù) 2019-08-03
  • 2 回答
  • 0 關(guān)注
  • 402 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號