没有找到合适的产品?
联系客服协助选型:023-68661681
提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|其它|编辑:郝浩|2005-06-02 10:23:00.000|阅读 1354 次
概述:
# 界面/图表报表/文档/IDE等千款热门软控件火热销售中 >>
定义控件--xp风格按钮(可设置文字颜色)
Imports System.Drawing
Imports System.ComponentModel
Public Class winxpbutton
Inherits System.Windows.Forms.Button
Private my_mouseDown As Boolean = False '鼠标按下
Private my_mouseHover As Boolean = False '鼠标移到上面
Private m_textcolor As Color = System.Drawing.Color.Black '字体颜色
<Description("字体颜色。")> _
Public Property textcolor() As Color
Get
Return m_textcolor
End Get
Set(ByVal Value As Color)
m_textcolor = Value
Me.Invalidate()
End Set
End Property
Public Sub New()
MyBase.New()
'该调用是 Windows 窗体设计器所必需的。
InitializeComponent()
'在 InitializeComponent()
调用之后添加任何初始化,true表示将指定的样式应用到控件
'设置控件样式位能够充分地更改控件行为
Me.SetStyle(ControlStyles.UserPaint, True)
'关联事件委托
AddHandler Me.MouseDown, AddressOf my_OnMouseDown
AddHandler Me.MouseUp, AddressOf my_OnMouseUp
AddHandler Me.MouseEnter, AddressOf my_OnMouseEnter
AddHandler Me.MouseLeave, AddressOf my_OnMouseLeave
Height = 23
Width = 75
End Sub
Protected Overrides Sub OnPaint(ByVal pevent As
System.Windows.Forms.PaintEventArgs)
'pevent.ClipRectangle指在其中绘制的矩形,即使用父控件的背景色来画这个矩形按钮
pevent.Graphics.FillRectangle(New
SolidBrush(Me.Parent.BackColor), pevent.ClipRectangle)
If (Enabled = False) Then
'画不可用状态
DrawDisableButton(pevent.Graphics)
ElseIf (my_mouseDown) Then '画鼠标按下状态
DrawMouseDownButton(pevent.Graphics)
ElseIf (my_mouseHover) Then '画鼠标移动到其上状态
DrawMouseHoverButton(pevent.Graphics)
ElseIf (Focused) Then '有焦点,但鼠标未移动到其上
DrawContainFocusButton(pevent.Graphics)
Else '一般情况下
DrawNormalButton(pevent.Graphics)
End If
'写文本
WriteText(pevent.Graphics)
End Sub
'鼠标按下的状态处理
Private Sub my_OnMouseDown(ByVal sender As Object, ByVal e As
MouseEventArgs)
my_mouseDown = True '鼠标按下
End Sub
'鼠标松开状态的处理
Private Sub my_OnMouseUp(ByVal sender As Object, ByVal e As
MouseEventArgs)
my_mouseDown = False '鼠标松开
'重新绘制控件时发生 Paint 事件。PaintEventArgs 指定绘制控件所用的
Graphics
'以及绘制控件所在的 ClipRectangle。
Dim pe As PaintEventArgs = New PaintEventArgs(CreateGraphics(), ClientRectangle)
OnPaint(pe)
End Sub
'鼠标进入
Private Sub my_OnMouseEnter(ByVal sender As Object, ByVal e As
EventArgs)
my_mouseHover = True '鼠标移动到其上
Dim pe As PaintEventArgs = New PaintEventArgs(CreateGraphics(),
ClientRectangle)
OnPaint(pe)
End Sub
'鼠标移动开
Private Sub my_OnMouseLeave(ByVal sender As Object, ByVal e As EventArgs)
my_mouseHover = False '鼠标移动开
Dim pe As PaintEventArgs = New PaintEventArgs(CreateGraphics(),
ClientRectangle)
OnPaint(pe)
End Sub
Private Sub DrawBorder(ByVal g As Graphics, ByVal
state As Integer)
If (state = 1) Then '绘制一般边框
'绘制一个画笔,高光点,宽度2
Dim p As Pen = New
Pen(SystemColors.ControlLightLight, 2)
'g.DrawLine画线,p是画笔,后面是第一个点的坐标,第二个点的坐标
g.DrawLine(p, 1, 1, 1, Height - 2)
'绘制左侧竖线
g.DrawLine(p, 1, 1, Width - 2, 1)
'绘制上面横线
g.DrawLine(p, Width - 1, 2, Width - 1, Height -
2) '绘制右侧竖线,由于已经在上面绘制了横线(纵坐标为1),所以从2开始
g.DrawLine(p, 2, Height - 1, Width - 2, Height -
1) '绘制下面横线
ElseIf (state = 2) Then
'绘制移动到其上的边框
'与一般边框用高光区别的是显示黄色
Dim p As Pen = New Pen(Color.Yellow, 2)
g.DrawLine(p, 1, 1, 1, Height - 2)
g.DrawLine(p, 1, 1, Width - 2, 1)
g.DrawLine(p, Width - 1, 2, Width - 1, Height -
2)
g.DrawLine(p, 2, Height - 1, Width - 2, Height -
1)
ElseIf (state = 3) Then
'绘制按下的显示边框
'与一般边框用高光区别的是显示暗褐色
Dim p As Pen = New Pen(SystemColors.ControlDark,
2)
g.DrawLine(p, 1, 1, 1, Height - 2)
g.DrawLine(p, 1, 1, Width - 2, 1)
g.DrawLine(p, Width - 1, 2, Width - 1, Height -
2)
g.DrawLine(p, 2, Height - 1, Width - 2, Height -
1)
ElseIf (state = 4) Then
'绘制不可用状态边框
'与一般边框用高光区别的是显示亮色
Dim p As Pen = New Pen(SystemColors.ControlLight, 2)
g.DrawLine(p, 1, 1, 1, Height - 2)
g.DrawLine(p, 1, 1, Width - 2, 1)
g.DrawLine(p, Width - 1, 2, Width - 1, Height - 2)
g.DrawLine(p, 2, Height - 1, Width - 2, Height - 1)
ElseIf (state = 5) Then
'绘制有焦点但鼠标不在其上的状态
'与一般边框用高光区别的是显示兰色
Dim p As Pen = New Pen(Color.SkyBlue, 2)
g.DrawLine(p, 1, 1, 1, Height - 2)
g.DrawLine(p, 1, 1, Width - 2, 1)
g.DrawLine(p, Width - 1, 2, Width - 1, Height - 2)
g.DrawLine(p, 2, Height - 1, Width - 2, Height - 1)
End If
'//做完如上的处理后再对可用和不可用做圆化边缘处理(也就是把按钮的4个角进行圆化处理)
If (state = 4) Then '不可用时
'使用画笔,Color.FromArgb(161, 161, 146)是从一个32位的ARGB值创建系统颜色,宽度为1
Dim p As Pen = New Pen(Color.FromArgb(161, 161, 146), 1)
g.DrawLine(p, 0, 2, 0, Height - 3) '左侧竖线(除了两个边角剩下的线)
g.DrawLine(p, 2, 0, Width - 3, 0) '上面横线(除了两个边角剩下的线)
g.DrawLine(p, Width - 1, 2, Width - 1, Height - 3)
'右侧竖线(除了两个边角剩下的线)
g.DrawLine(p, 2, Height - 1, Width - 3, Height - 1) '下面的横线
g.DrawLine(p, 0, 2, 2, 0) '左上角
g.DrawLine(p, 0, Height - 3, 2, Height - 1) '左下角
g.DrawLine(p, Width - 3, 0, Width - 1, 2) '右上角
g.DrawLine(p, Width - 3, Height - 1, Width - 1, Height - 3)
'右下角
Else 'draw normal style border
'采用默认的黑色进行绘制边角
g.DrawLine(Pens.Black, 0, 2, 0, Height - 3)
g.DrawLine(Pens.Black, 2, 0, Width - 3, 0)
g.DrawLine(Pens.Black, Width - 1, 2, Width - 1, Height - 3)
g.DrawLine(Pens.Black, 2, Height - 1, Width - 3, Height - 1)
g.DrawLine(Pens.Black, 0, 2, 2, 0)
g.DrawLine(Pens.Black, 0, Height - 3, 2, Height - 1)
g.DrawLine(Pens.Black, Width - 3, 0, Width - 1, 2)
g.DrawLine(Pens.Black, Width - 3, Height - 1, Width - 1, Height - 3)
End If
End Sub
'一般状态
Private Sub DrawNormalButton(ByVal g As Graphics)
'绘制边框,宽度为1
DrawBorder(g, 1)
'绘制背景,用高光点颜色
PaintBack(g, SystemColors.ControlLightLight)
End Sub
'鼠标移动到其上的状态
Private Sub DrawMouseHoverButton(ByVal g As Graphics)
DrawBorder(g, 2)
PaintBack(g, SystemColors.ControlLightLight)
End Sub
Private Sub DrawMouseDownButton(ByVal g As Graphics)
DrawBorder(g, 3)
'绘制背景,用三维元素的亮色
PaintBack(g, SystemColors.ControlLight)
End Sub
Private Sub DrawDisableButton(ByVal g As Graphics)
DrawBorder(g, 4)
'亮色
PaintBack(g, SystemColors.ControlLight)
End Sub
Private Sub DrawContainFocusButton(ByVal g As Graphics)
DrawBorder(g, 5)
'高光点
PaintBack(g, SystemColors.ControlLightLight)
End Sub
'绘制背景色
Private Sub PaintBack(ByVal g As Graphics, ByVal c As Color)
'填充时采用:单色画刷,相对与(0,0)坐标(3,3)的位置,大小为宽-6,高-6
g.FillRectangle(New SolidBrush(c), 3, 3, Width - 6, Height - 6)
End Sub
'写文本
Private Sub WriteText(ByVal g As Graphics)
'计算文本的位置
Dim x As Integer = 0
Dim y As Integer = 0
'size用宽高有序对表示矩形区域
Dim s As Size = g.MeasureString(Text, Font).ToSize()
x = (Width - s.Width) / 2 '文字相对控件x偏移
y = (Height - s.Height) / 2 '文字相对控件y偏移
'写文本
If (Enabled) Then '如果控件可用,则黑色文字
'g.DrawString(Text, Font, Brushes.Black, x,
y)
Dim b As New SolidBrush(m_textcolor)
g.DrawString(Text, Font, b, x, y)
Else '如果控件不可用,则灰色文字
g.DrawString(Text, Font, Brushes.Gray, x, y)
End If
End Sub
End Class
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@evget.com
面对“数字中国”建设和中国制造2025战略实施的机遇期,中车信息公司紧跟时代的步伐,以“集约化、专业化、标准化、精益化、一体化、平台化”为工作目标,大力推进信息服务、工业软件等核心产品及业务的发展。在慧都3D解决方案的实施下,清软英泰建成了多模型来源的综合轻量化显示平台、实现文件不失真的百倍压缩比、针对模型中的大模型文件,在展示平台上进行流畅展示,提升工作效率,优化了使用体验。
本站的模型资源均免费下载,登录后即可下载。模型仅供学习交流,勿做商业用途。
本站的模型资源均免费下载,登录后即可下载。模型仅供学习交流,勿做商业用途。
本站的模型资源均免费下载,登录后即可下载。模型仅供学习交流,勿做商业用途。
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@evget.com
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢
慧都科技 版权所有 Copyright 2003-
2025 渝ICP备12000582号-13 渝公网安备
50010702500608号