📄 taskbar_container.cls
字号:
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "TaskBar_Container"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
'****************************************************************************
'人人为我,我为人人
'枕善居汉化收藏整理
'发布日期:2006/11/10
'描 述:仿红帽子操作系统Shell
'网 站:http://www.Mndsoft.com/ (VB6源码博客)
'网 站:http://www.VbDnet.com/ (VB.NET源码博客,主要基于.NET2005)
'e-mail :Mndsoft@163.com
'e-mail :Mndsoft@126.com
'OICQ :88382850
' 如果您有新的好的代码别忘记给枕善居哦!
'****************************************************************************
Private Button_Left As Integer
Private Button_Right As Integer
Private Button_PictureIndex As IconList
Private Button_Arrow As Boolean
Private Button_Enabled As Boolean
Property Let Enabled(StrValue As Boolean)
Button_Enabled = StrValue
End Property
Property Get Enabled() As Boolean
Enabled = Button_Enabled
End Property
Property Let Arrow(StrValue As Boolean)
Button_Arrow = StrValue
End Property
Property Get Arrow() As Boolean
Arrow = Button_Arrow
End Property
Property Let IconIndex(StrValue As IconList)
Button_PictureIndex = StrValue
End Property
Property Get IconIndex() As IconList
IconIndex = Button_PictureIndex
End Property
Property Let Left(ByVal StrValue As Integer)
Button_Left = StrValue
End Property
Property Get Left() As Integer
Left = Button_Left
End Property
Property Let Right(ByVal StrValue As Integer)
Button_Right = StrValue
End Property
Property Get Right() As Integer
Right = Button_Right
End Property
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -