3307|6

69

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

100分求一个用于C#上能带图片的按钮控件. [复制链接]

我想用C#开发WinCE的程序,找了半天没有找到怎么在按钮上放图片,听说是没有带这样的控件,  都是第三方的才行.
哪位有发给小弟一个.

最新回复

好的,十分谢谢 我试试.好了  就结帖...   详情 回复 发表于 2009-3-25 07:28
点赞 关注

回复
举报

67

帖子

0

TA的资源

禁止访问

沙发
 
提示: 作者被禁止或删除 内容自动屏蔽
 
 

回复

66

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Windows.Forms;


namespace wince
{
    class ImageButton : Control
    {
        //Private members
        private Image image;
        //flag to indicate the pressed state
        private bool bPushed;
        private Bitmap m_bmpOffscreen;

        public ImageButton()
        {
            bPushed = false;
            //default minimal size
            this.Size = new Size(21, 21);
        }


        protected override void OnPaintBackground(PaintEventArgs e)
        {
            //Do nothing
        }
        public Image Image
        {
            get
            {
                return image;
            }
            set
            {
                image = value;
            }
        }
        protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
        {
            Graphics gxOff; //Offscreen graphics
            Rectangle imgRect; //image rectangle
            Brush backBrush; //brush for filling a backcolor
            if (m_bmpOffscreen == null) //Bitmap for doublebuffering
            {
                m_bmpOffscreen = new Bitmap(ClientSize.Width, ClientSize.Height);
            }

            gxOff = Graphics.FromImage(m_bmpOffscreen);
            gxOff.Clear(this.BackColor);

            if (!bPushed)
                backBrush = new SolidBrush(Parent.BackColor);
            else //change the background when it''s pressed
                backBrush = new SolidBrush(Color.LightGray);
            gxOff.FillRectangle(backBrush, this.ClientRectangle);

            if (image != null)
            {
                //Center the image relativelly to the control
                int imageLeft = (this.Width - image.Width) / 2;
                int imageTop = (this.Height - image.Height) / 2;

                if (!bPushed)
                {
                    imgRect = new Rectangle(imageLeft, imageTop, image.Width,
                    image.Height);
                }
                else //The button was pressed
                {
                    //Shift the image by one pixel
                    imgRect = new Rectangle(imageLeft + 1, imageTop + 1, image.Width,
                    image.Height);
                }
                //Set transparent key
                ImageAttributes imageAttr = new ImageAttributes();
                imageAttr.SetColorKey(BackgroundImageColor(image),
                BackgroundImageColor(image));
                //Draw image
                gxOff.DrawImage(image, imgRect, 0, 0, image.Width, image.Height,
                GraphicsUnit.Pixel, imageAttr);

            }

            if (bPushed) //The button was pressed
            {
                //Prepare rectangle
                Rectangle rc = this.ClientRectangle;
                rc.Width--;
                rc.Height--;
                //Draw rectangle
                gxOff.DrawRectangle(new Pen(Color.Black), rc);
            }

            //Draw from the memory bitmap
            e.Graphics.DrawImage(m_bmpOffscreen, 0, 0);

            base.OnPaint(e);
        }
        private Color BackgroundImageColor(Image image)
        {
            Bitmap bmp = new Bitmap(image);
            return bmp.GetPixel(0, 0);
        }
        protected override void OnMouseDown(System.Windows.Forms.MouseEventArgs e)
        {
            bPushed = true;
            this.Invalidate();
        }

        protected override void OnMouseUp(System.Windows.Forms.MouseEventArgs e)
        {
            bPushed = false;
            this.Invalidate();
        }


    }
}
 
 
 

回复

77

帖子

0

TA的资源

一粒金砂(初级)

4
 
            ImageButton imageButton1 = new ImageButton();
            imageButton1.Image = new Bitmap(this.imageList2.Images[1]);
            imageButton1.Location = new Point(368, 287);
            imageButton1.Size = new Size(100, 67);
            //Hook up into click event
            imageButton1.Click += new EventHandler(pOpenDoor_Click);
 
 
 

回复

60

帖子

0

TA的资源

一粒金砂(初级)

5
 
楼上正解啊,自己画一个就行了的。
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(初级)

6
 
自己画,这是根本的解决之道
 
 
 

回复

76

帖子

0

TA的资源

一粒金砂(初级)

7
 
好的,十分谢谢
我试试.好了  就结帖...
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/9 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表