iT邦幫忙

DAY 7
3

程式隨手寫系列 第 7

小功能(5)

  • 分享至 

  • xImage
  •  
 Bitmap bmp;

        private void menuStrip1_ItemClicked(object sender, ToolStripItemClickedEventArgs e)
        {
            openFileDialog1.Filter = "*.gif|*.gif|*.jpg|*.jpg|*.bmp|*.bmp";
            if (openFileDialog1.ShowDialog()==DialogResult.OK)
            {
                bmp = new Bitmap(openFileDialog1.FileName);
                this.Invalidate();
            }
        }

        private void button1_Paint(object sender, PaintEventArgs e)
        {
            if (bmp != null)
            {
                Graphics grap = e.Graphics;
                TextureBrush theBrush = new TextureBrush(bmp);
                grap.FillRectangle(theBrush, this.ClientRectangle);
            }
        }

運用Drawing的Api讓button呈現Image的效果


上一篇
簡單介紹看code方法(5)
下一篇
小功能(6)
系列文
程式隨手寫20
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言