初始化toolstrip
生活随笔
收集整理的這篇文章主要介紹了
初始化toolstrip
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
/// <summary>/// 初始化工具條/// </summary>private void InitializeToolbar(){Image img = global::Win.Properties.Resources.mainfram;//240 15int heigh = 15;int width = 16;for (int i = 0; i < 15; i++){Bitmap bitmap = new Bitmap(16, 15, System.Drawing.Imaging.PixelFormat.Format24bppRgb);Graphics graphics = Graphics.FromImage(bitmap);graphics.DrawImage(img, new Rectangle(0, 0, width, heigh), i * width, 0, 16, 15, GraphicsUnit.Pixel);ToolStripButton tsb = new ToolStripButton();tsb.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;tsb.Image = Image.FromHbitmap(bitmap.GetHbitmap());tsb.ImageTransparentColor = System.Drawing.Color.Magenta;tsb.Name = "tsbtn" + i;tsb.Size = new System.Drawing.Size(23, 22);tsb.Text = "toolStripButton1";tsb.Click += new EventHandler(tsb_Click);tsToll.Items.Add(tsb);}}
轉(zhuǎn)載于:https://www.cnblogs.com/crazycxy/archive/2012/05/30/2525838.html
總結(jié)
以上是生活随笔為你收集整理的初始化toolstrip的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IEPLUS(IE增强性插件)
- 下一篇: 如果软件测试是门艺术,软件测试工程师就是