代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
CSharp
】
winform拖动排序
作者:
小火柴
/ 发布于
2012/12/6
/
450
创建一个组件类(项目上右键->添加->组件),用户控件神马的都行
using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class DragabledLabel : Label { private Point mouse_offse; private bool bDraged = false; private int xPos; public DragabledLabel() { InitializeComponent(); } public DragabledLabel(IContainer container) { container.Add(this); InitializeComponent(); } protected override void OnMouseDown(MouseEventArgs e) { bDraged = true; this.BringToFront(); this.BackColor = Color.Beige; xPos = this.Location.X; mouse_offse = new Point(-e.X, -e.Y); //base.OnMouseDown(e); } protected override void OnMouseMove(MouseEventArgs e) { if (bDraged) { Point mousePos = Control.MousePosition; mousePos.Offset(mouse_offse.X, mouse_offse.Y); this.Location = this.Parent.PointToClient(mousePos); } //base.OnMouseMove(e); } protected override void OnMouseUp(MouseEventArgs e) { if (e.Button == System.Windows.Forms.MouseButtons.Left) { Point mousePos = Control.MousePosition; mousePos.Offset(mouse_offse.X, mouse_offse.Y); this.Location = this.Parent.PointToClient(mousePos); this.BackColor = SystemColors.Control; bDraged = false; } Sort(); //base.OnMouseUp(e); } private void Sort() { ControlCollection DragabledLabels = this.Parent.Controls; Control parent = this.Parent; List<Control> list = new List<Control>(); while (DragabledLabels.Count > 0) { list.Add(GetMinYControl(DragabledLabels)); } for (int index = 0; index < list.Count; index++) { list[index].Location = new Point(0, 20 * index); parent.Controls.Add(list[index]); } } private Control GetMinYControl(ControlCollection cc) { Control c = cc[0]; if (cc.Count == 1) { cc.Remove(c); return c; } for (int i = 1; i < cc.Count; i++) { if (cc[i].Location.Y < c.Location.Y) { c = cc[i]; } } cc.Remove(c); return c; } } }
试试其它关键字
拖动排序
同语言下
.
文件IO 操作类库
.
Check图片类型[JPEG(.jpg 、.jpeg),TIF,GIF,BMP,PNG,P
.
机器名和IP取得(IPV4 IPV6)
.
Tiff转换Bitmap
.
linqHelper
.
MadieHelper.cs
.
RegHelper.cs
.
如果关闭一个窗体后激活另一个窗体的事件或方法
.
创建日志通用类
.
串口辅助开发类
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
小火柴
贡献的其它代码
(
15
)
.
统计数据库中表,视图,存储过程个数
.
动态调用WebService方法
.
强制关闭浏览器窗口
.
复制网页内容到剪切板
.
Excel 创建、打开、读取、写入、保存的一般性代码
.
Eval绑定时间格式化
.
控制Repeater每行显示条数
.
无标题栏窗体的鼠标拖动效果
.
自动加载图标
.
Winform获取bin目录的路径
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3