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

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

請(qǐng)教PictureBox PaintEvent與其他方法

請(qǐng)教PictureBox PaintEvent與其他方法

猛跑小豬 2019-08-02 07:02:25
PictureBox PaintEvent與其他方法我的表單中只有一個(gè)PictureBox,我想在這個(gè)PictureBox上畫一個(gè)方法,但是我不能這樣做,不能工作。方法是: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)驗(yàn) 獲得超17個(gè)贊

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}




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

添加回答

舉報(bào)

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號(hào)

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