VB.NET开发语言的出现为我们带来了非常大的好处。今天我们会从VB.NET通知控件的一些基本概念来对这款语言进行一个详细的了解,希望可以对又需要的朋友有所帮助,提高大家的认知程度。
VB.NET通知控件有两个基本的类组成:
一个 form (会实际显示出来的部分). 一个包含所有可在form中包含的属性的类.
类包含两个timers, 一个用来控制渐隐渐出的动画效果,另一个可配置为定义弹出窗口显示多久.下面是一个演示:
- fPopup.Size = Size
- fPopup.Opacity = 0
- fPopup.Location = _ New
Point(Screen.PrimaryScreen.
WorkingArea.Right_ -
fPopup.Size.Width - 1,- _ Screen.PrimaryScreen.
WorkingArea.Bottom)- fPopup.Show()
form在Paint事件中完成绘制. 笔者使用了一下函数来获取比指定颜色更浅/更深的颜色,但不确定是否有更好的方法.
- Private Function GetDarkerColor()
- Function GetDarkerColor(ByVal
Color As Color) As Color- Dim clNew As Color clNew =
Drawing.Color.FromArgb(255,
DedValueMin0(CInt(Color.R), _
Parent.GradientPower), DedValueMin0
(CInt(Color.G), _ Parent.GradientPower),
DedValueMin0(CInt(Color.B), _
Parent.GradientPower))- Return clNew
- End
- Function
- 为避免闪烁: Me.SetStyle(ControlStyles.
OptimizedDoubleBuffer, True)- Me.SetStyle(ControlStyles.
ResizeRedraw, True)- Me.SetStyle(ControlStyles.
AllPaintingInWmPaint, True)
如何为VB.NET通知控件实现一个隐藏窗体的方法
在PopupNotifier.vb 类中加入:
- Sub Hide()
- Sub Hide()
- tmWait.Stop()
- tmAnimation.Start()
- End Sub
在form中如此调用:
- Private Sub PopupNoti
fier1_Close()- Sub PopupNotifier1_Close()
- Handles PopupNotifier1.Close
- PopupNotifier1.Hide()
- End Sub
VB.NET通知控件的一些基本概念就为大家介绍到这里。
【编辑推荐】