码迷,mamicode.com
首页 > Windows程序 > 详细

winform建立非矩形窗体

时间:2016-04-23 19:34:18      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:

非规则窗体可能会需要加的功能代码:

1:因为没有了最上边的标题栏,所以需要加窗体鼠标拖动功能,在Form里面加如下代码:

#region   移动窗体
        // 移动窗体
        const int WM_NCLBUTTONDOWN = 0xA1;
        const int HT_CAPTION = 0x2;
        [System.Runtime.InteropServices.DllImport("user32.dll")]
        static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);

        // 窗体上鼠标按下时
        protected override void OnMouseDown(MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left & this.WindowState == FormWindowState.Normal)
            {
                // 移动窗体
                this.Capture = false;
                SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0);
            }
        }
        #endregion

一:窗体形状为图片

1:将窗体的TransparencyKey属性设为窗体的背景色

2:将窗体的FormBorderStyle属性设为None

3:设置窗体的背景属性(BackgroundImage)为准备好的图片(图片背景需为透明,所以是png格式)

4:结果:

技术分享

 一种简单的处理掉背景色的方法:(简单图片可用)

在ppt中插入准备好的图片,点删除背景

技术分享

如和需求有差别 可以点选标记

技术分享

最后保存为png即可

技术分享

二:窗体形状为文字

1:窗体的FormBorderStyle属性设为None

2:加如下代码:

public LoginForm()
        {
            InitializeComponent();
            GraphicsPath path = new GraphicsPath();
            //这里绘画图像
            string stringText = "C#";
            FontFamily family = new FontFamily("隶书");
            int fontStyle = (int)FontStyle.Bold;//粗体
            int emSize = 250;//字体大小
            Point origin = new Point(20, 20);//起始位置
            StringFormat format = StringFormat.GenericDefault;

            path.AddString(stringText, family, fontStyle, emSize, origin, format);

            Region re = new Region(path);
            //将窗口设置为图像的形状
            this.Region = re;
        }

3:字体的颜色 控制form的背景色

4:结果如下

技术分享

winform建立非矩形窗体

标签:

原文地址:http://www.cnblogs.com/happyqiang/p/5425207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!