C#非矩形窗体实现方法

作者:zhuzhao 时间:2023-04-09 15:11:39 

本文实例讲述了C#非矩形窗体实现方法。分享给大家供大家参考。具体实现方法如下:


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
namespace WindowsApplication1
{
 public partial class Form3 : Form
 {
   Point downPoint = Point.Empty;
   public Form3()
   {
     InitializeComponent();
   }
   void Set()
   {
     Rectangle rect = this.ClientRectangle;
     using (GraphicsPath path = new GraphicsPath())
     {
       path.AddEllipse(rect);
       this.Region = new Region(path);
     }
   }
   private void Form3_Load(object sender, EventArgs e)
   {
     Set();
   }
   private void Form3_MouseDown(object sender, MouseEventArgs e)
   {
     if (e.Button != MouseButtons.Left) return;
     downPoint = new Point(e.X, e.Y);
   }
   private void Form3_MouseMove(object sender, MouseEventArgs e)
   {
     if (downPoint == Point.Empty) return;
     Point location = new Point(this.Left + e.X - downPoint.X, this.Top + e.Y - downPoint.Y);
     this.Location = location;
   }
   private void Form3_MouseUp(object sender, MouseEventArgs e)
   {
     if (e.Button != MouseButtons.Left) return;
     downPoint = Point.Empty;
   }
 }
}

希望本文所述对大家的C#程序设计有所帮助。

标签:C#,非矩形,窗体
0
投稿

猜你喜欢

  • Java tomcat中的类加载器和安全机制你了解吗

    2022-05-11 15:45:02
  • C语言数据结构实现银行模拟

    2023-04-16 17:25:49
  • Java线程间的通信方式详解

    2022-05-20 10:33:47
  • Android View的事件分发机制深入分析讲解

    2023-06-18 21:28:49
  • java GUI编程之paint绘制操作示例

    2023-11-24 17:58:39
  • SpringBoot 整合mapstruct的实现步骤

    2023-11-28 00:51:00
  • Android编程实现小说阅读器滑动效果的方法

    2021-10-26 06:44:06
  • 浅谈React Native打包apk的坑

    2022-07-26 05:44:28
  • SpringCloud @FeignClient参数的用法解析

    2022-11-25 06:31:37
  • Spring Boot启动过程完全解析(二)

    2022-06-17 14:40:59
  • Java 中责任链模式实现的三种方式

    2023-11-08 14:32:31
  • 用Java设计模式中的观察者模式开发微信公众号的例子

    2023-01-17 05:30:58
  • Mybatis 复杂对象resultMap的使用

    2023-10-12 22:56:44
  • Android通过ExifInterface判断Camera图片方向的方法

    2023-02-02 18:43:38
  • SpringBoot中使用 RabbitMQ的教程详解

    2023-10-22 01:02:42
  • Java中的递归方法示例介绍

    2023-07-20 18:04:11
  • Java文件操作工具类fileUtil实例【文件增删改,复制等】

    2023-11-28 08:39:00
  • C# Socket 发送&接收&返回 简单应用实例

    2022-09-18 20:08:20
  • Android账号注册实现点击获取验证码倒计时效果

    2023-05-18 05:46:33
  • Java实现的不同图片居中剪裁生成同一尺寸缩略图功能示例

    2023-08-23 14:53:15
  • asp之家 软件编程 m.aspxhome.com