亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? xpframe.ctl

?? XP風格浮動工具條 和蘋果風格按鈕控件
?? CTL
?? 第 1 頁 / 共 5 頁
字號:
End Property

'FooterFillStyle
Public Property Get FooterFillStyle() As FillStyle
Attribute FooterFillStyle.VB_Description = "Gets/Sets the footer fill style"
Attribute FooterFillStyle.VB_ProcData.VB_Invoke_Property = ";Footer"
    FooterFillStyle = m_eFooterFillStyle
End Property
Public Property Let FooterFillStyle(ByVal eFooterFillStyle As FillStyle)
    m_eFooterFillStyle = eFooterFillStyle
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("FooterFillStyle")
End Property
'
'
'#Container
'ContainerTextFont
Public Property Get ContainerTextFont() As Font
Attribute ContainerTextFont.VB_Description = "Gets/Sets the container text font"
Attribute ContainerTextFont.VB_ProcData.VB_Invoke_Property = ";Container"
    Set ContainerTextFont = m_fContainerTextFont
End Property

Public Property Set ContainerTextFont(objContainerTextFont As Font)
    Set m_fContainerTextFont = objContainerTextFont
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerTextFont")
End Property

'BackColor
Public Property Get ContainerBackColor() As OLE_COLOR
Attribute ContainerBackColor.VB_Description = "Gets/Sets the container back color"
Attribute ContainerBackColor.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerBackColor = m_oContainerBackColor
End Property
Public Property Let ContainerBackColor(ByVal objContainerBackColor As OLE_COLOR)
    m_oContainerBackColor = objContainerBackColor
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerBackColor")
End Property

'FadeColor
Public Property Get ContainerFadeColor() As OLE_COLOR
Attribute ContainerFadeColor.VB_Description = "Gets/Sets the container fade color"
Attribute ContainerFadeColor.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerFadeColor = m_oContainerFadeColor
End Property
Public Property Let ContainerFadeColor(ByVal objContainerFadeColor As OLE_COLOR)
    m_oContainerFadeColor = objContainerFadeColor
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerFadeColor")
End Property

'FillStyle
Public Property Get ContainerFillStyle() As FillStyle
Attribute ContainerFillStyle.VB_Description = "Gets/Sets the container fill style"
Attribute ContainerFillStyle.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerFillStyle = m_eContainerFillStyle
End Property
Public Property Let ContainerFillStyle(ByVal eContainerFillStyle As FillStyle)
    m_eContainerFillStyle = eContainerFillStyle
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerFillStyle")
End Property

'ForeColor
Public Property Get ContainerForeColor() As OLE_COLOR
Attribute ContainerForeColor.VB_Description = "Gets/Sets the container fore color"
Attribute ContainerForeColor.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerForeColor = m_oContainerForeColor
End Property
Public Property Let ContainerForeColor(ByVal objContainerForeColor As OLE_COLOR)
    m_oContainerForeColor = objContainerForeColor
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerForeColor")
End Property

'BorderColor
Public Property Get ContainerBorderColor() As OLE_COLOR
Attribute ContainerBorderColor.VB_Description = "Gets/Sets the border color"
Attribute ContainerBorderColor.VB_ProcData.VB_Invoke_Property = ";Border"
    ContainerBorderColor = m_oContainerBorderColor
End Property
Public Property Let ContainerBorderColor(ByVal objContainerBorderColor As OLE_COLOR)
    m_oContainerBorderColor = objContainerBorderColor
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerBorderColor")
End Property

'BorderStyle
Public Property Get ContainerBorderStyle() As TraceBorderStyle
Attribute ContainerBorderStyle.VB_Description = "Gets/Sets the border style"
Attribute ContainerBorderStyle.VB_ProcData.VB_Invoke_Property = ";Border"
    ContainerBorderStyle = m_eContainerBorderStyle
End Property
Property Let ContainerBorderStyle(ByVal eBorderStyle As TraceBorderStyle)
    m_eContainerBorderStyle = eBorderStyle
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerBorderStyle")
End Property

'ShapeStyle
Public Property Get ContainerShapeStyle() As ShapeStyle
Attribute ContainerShapeStyle.VB_Description = "Gets/Sets the shape style"
Attribute ContainerShapeStyle.VB_ProcData.VB_Invoke_Property = ";Border"
    ContainerShapeStyle = m_eContainerShapeStyle
End Property
Property Let ContainerShapeStyle(ByVal eShapeStyle As ShapeStyle)
    m_eContainerShapeStyle = eShapeStyle
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerShapeStyle")
End Property

'CornerRadius
Public Property Get ContainerCornerRadius() As Integer
Attribute ContainerCornerRadius.VB_Description = "Gets/Sets corner radius"
Attribute ContainerCornerRadius.VB_ProcData.VB_Invoke_Property = ";Border"
    ContainerCornerRadius = m_iContainerCornerRadius
End Property
Property Let ContainerCornerRadius(ByVal iContainerCornerRadius As Integer)
    m_iContainerCornerRadius = iContainerCornerRadius
    Call DrawControl
    Call UserControl.Refresh
    Call UserControl.PropertyChanged("ContainerCornerRadius")
End Property

'ContainerPicture
Public Property Set ContainerPicture(NewIcon As StdPicture)
    Set m_ContainerPicture = NewIcon
    PropertyChanged "ContainerPicture"
    Call UserControl.Refresh
    Call DrawControl
End Property
Public Property Get ContainerPicture() As StdPicture
Attribute ContainerPicture.VB_Description = "Gets/Sets container picture"
Attribute ContainerPicture.VB_ProcData.VB_Invoke_Property = ";Container"
    Set ContainerPicture = m_ContainerPicture
End Property
'ContainerPictureSize
Public Property Get ContainerPictureSize() As Integer
Attribute ContainerPictureSize.VB_Description = "Gets/Sets container picture size"
Attribute ContainerPictureSize.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerPictureSize = m_ContainerPictureSize
End Property

Public Property Let ContainerPictureSize(ByVal NewIconSize As Integer)
    m_ContainerPictureSize = NewIconSize
    PropertyChanged "ContainerPictureSize"
    Call UserControl.Refresh
    Call DrawControl
End Property
'TopBufferSize
Public Property Get ContainerPictureBufferTop() As Integer
Attribute ContainerPictureBufferTop.VB_Description = "Gets/Sets container picture top padding"
Attribute ContainerPictureBufferTop.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerPictureBufferTop = m_TopBuffer
End Property

Public Property Let ContainerPictureBufferTop(ByVal Size As Integer)
    m_TopBuffer = Size
    PropertyChanged "ContainerPictureBufferTop"
    Call UserControl.Refresh
    Call DrawControl
End Property
'LeftBufferSize
Public Property Get ContainerPictureBufferLeft() As Integer
Attribute ContainerPictureBufferLeft.VB_Description = "Gets/Sets container picture left padding"
Attribute ContainerPictureBufferLeft.VB_ProcData.VB_Invoke_Property = ";Container"
    ContainerPictureBufferLeft = m_LeftBuffer
End Property

Public Property Let ContainerPictureBufferLeft(ByVal Size As Integer)
    m_LeftBuffer = Size
    PropertyChanged "ContainerPictureBufferLeft"
    Call UserControl.Refresh
    Call DrawControl
End Property

'
'
'#Divers
'UseCustonColors
Public Property Get UseCustomColors() As Boolean
Attribute UseCustomColors.VB_Description = "Use theme colors or custom colors"
Attribute UseCustomColors.VB_ProcData.VB_Invoke_Property = ";Basic"
    UseCustomColors = m_UseCustomColors
End Property

Public Property Let UseCustomColors(ByVal New_UseCustomColors As Boolean)
    m_UseCustomColors = New_UseCustomColors
    PropertyChanged "UseCustomColors"
    GetGradientColors
    Call UserControl.Refresh
    Call DrawControl
End Property

'Appearence
Public Property Get Appearence() As Theme
Attribute Appearence.VB_Description = "Sets theme colors of control"
Attribute Appearence.VB_ProcData.VB_Invoke_Property = ";Basic"
    Appearence = m_enmTheme
End Property

Public Property Let Appearence(enmNewTheme As Theme)
    m_enmTheme = enmNewTheme
    Call UserControl.PropertyChanged("Appearence")
    GetGradientColors
    Call UserControl.Refresh
    Call DrawControl
End Property

'Enable
Public Property Get Enabled() As Boolean
Attribute Enabled.VB_Description = "Gets/Sets if control is enabled"
Attribute Enabled.VB_ProcData.VB_Invoke_Property = ";Basic"
    Enabled = m_bEnabled
End Property
Public Property Let Enabled(ByVal vNewValue As Boolean)
    On Error Resume Next
    m_bEnabled = vNewValue
    Dim ctl As Control
    For Each ctl In UserControl.ContainedControls
        ctl.Enabled = m_bEnabled
    Next
    Call UserControl.Refresh
End Property
'State
Public Property Get Expandable() As Boolean
Attribute Expandable.VB_Description = "Is control expandable"
Attribute Expandable.VB_ProcData.VB_Invoke_Property = ";Basic"
    Expandable = m_CanExpand
End Property

Public Property Let Expandable(ByVal New_State As Boolean)
    m_CanExpand = New_State
    If m_XPStyle = True Then m_CanExpand = False
    State = eBarcollapsed
    PropertyChanged "Expandable"
    Call UserControl.Refresh
    Call DrawControl
End Property

'CollapseButtonColor
Public Property Get CollapseButtonColor() As OLE_COLOR
Attribute CollapseButtonColor.VB_Description = "Gets/Sets collapse button color"
Attribute CollapseButtonColor.VB_ProcData.VB_Invoke_Property = ";Basic"
    CollapseButtonColor = m_CollapseButtonColor
End Property
Public Property Let CollapseButtonColor(ByVal objCollapseButtonColor As OLE_COLOR)
    m_CollapseButtonColor = objCollapseButtonColor
    Call UserControl.PropertyChanged("CollapseButtonColor")
    Call UserControl.Refresh
    Call DrawControl
End Property
'backcolor
Public Property Get BackColor() As OLE_COLOR
Attribute BackColor.VB_Description = "Gets/Sets container back color"
Attribute BackColor.VB_ProcData.VB_Invoke_Property = ";Container"
    BackColor = m_ebg
End Property
Public Property Let BackColor(ByVal objBackColor As OLE_COLOR)
    m_ebg = objBackColor
    Call UserControl.PropertyChanged("BackColor")
    Call UserControl.Refresh
    Call DrawControl
End Property
'
'
'Prod閐ures diverses et utiles
'definir le rectangle de chaque partie
Private Sub GetItemClientRect(tR As RECT, ByVal X1 As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 As Long)
    SetRect tR, X1, Y1, X2, Y2
End Sub
'definir la zone r間ion de la  fen阾re
Private Sub GetItemWindowReg(ByVal Region)
    SetWindowRgn UserControl.hWnd, Region, True
End Sub

'fonction qui donne la taille des bars: header et Footer
Private Function ReadSizeBar(bar As String) As Long
    Select Case bar
    Case "Header"
        Select Case m_iHeaderSize
        Case Small
            ReadSizeBar = 18
        Case Medium
            ReadSizeBar = 25
        Case Large
            ReadSizeBar = 40
        End Select

    Case "Footer"
        Select Case m_iFooterSize
'        Case Small
'            ReadSizeBar = 12
        Case eMedium
            ReadSizeBar = 20
        Case eLarge
            ReadSizeBar = 34
        End Select
    End Select
End Function

Private Sub DrawControl()
    Dim tR As RECT
    Dim r As RECT
    Dim tRB As tpAPI_RECT
    Dim BorderStyle As Long
    Dim lWinRgn As Long
    Dim hPen As Long
    Dim hPenOld As Long
    Dim lRadius As Long
    Dim lHeaderSize As Long
    Dim lFooterSize As Long

    With UserControl

        BorderStyle = m_eContainerBorderStyle
        lHeaderSize = ReadSizeBar("Header")
        lFooterSize = ReadSizeBar("Footer")

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人精品国产福利| 亚洲久草在线视频| 国内精品久久久久影院色| 日韩三级中文字幕| 国产成人午夜高潮毛片| 国产精品午夜电影| 99久精品国产| 亚洲一区二区三区中文字幕在线| 欧美日韩日日骚| 日本va欧美va精品| 久久精品男人的天堂| av一区二区久久| 亚洲韩国精品一区| 欧美大度的电影原声| 成人综合在线视频| 亚洲自拍偷拍网站| 久久综合久久鬼色中文字| 国产99久久久精品| 亚洲va国产va欧美va观看| 精品91自产拍在线观看一区| www.日韩在线| 亚洲1区2区3区视频| 久久久久国产一区二区三区四区| 97se亚洲国产综合自在线观| 日韩国产欧美三级| 中文字幕一区在线观看| 91精品国产综合久久福利软件 | 国产一区999| 一区二区三区久久| 精品国产一区二区三区四区四| 成人小视频在线观看| 一区二区三区精品在线观看| 欧美α欧美αv大片| 色综合久久中文综合久久97| 久久国产免费看| 亚洲黄一区二区三区| 精品国产精品一区二区夜夜嗨| 色av综合在线| 国产成人8x视频一区二区| 天堂va蜜桃一区二区三区| 亚洲欧洲国产日韩| 精品噜噜噜噜久久久久久久久试看| 色香色香欲天天天影视综合网| 九九九精品视频| 亚洲成人av电影| 亚洲视频一二区| 亚洲国产成人一区二区三区| 日韩三级在线免费观看| 欧美日韩一区高清| 91麻豆视频网站| 成人激情黄色小说| 国产精品伊人色| 久久成人免费电影| 香蕉影视欧美成人| 亚洲综合色噜噜狠狠| 日韩美女啊v在线免费观看| 久久久久国产精品人| 精品久久一二三区| 日韩一区二区高清| 91麻豆精品国产91久久久久久久久 | 精品久久久久香蕉网| 4438x成人网最大色成网站| 欧美系列在线观看| 一本大道久久a久久精二百| 成人在线综合网| 国产成人鲁色资源国产91色综 | 中文字幕av不卡| 久久老女人爱爱| 久久久久久综合| 国产天堂亚洲国产碰碰| 精品日韩在线观看| 精品国产成人系列| 久久影视一区二区| 久久影院午夜片一区| 久久综合九色综合欧美亚洲| 精品国产乱码久久久久久图片| 日韩一区二区免费高清| 欧美大肚乱孕交hd孕妇| 日韩欧美国产综合| 久久精品日韩一区二区三区| 欧美极品另类videosde| 国产精品毛片大码女人| 国产精品超碰97尤物18| 日韩理论电影院| 夜夜嗨av一区二区三区四季av| 亚洲乱码国产乱码精品精可以看 | 三级一区在线视频先锋| 婷婷久久综合九色综合伊人色| 偷拍与自拍一区| 麻豆91精品91久久久的内涵| 国产一区在线观看视频| 国产乱人伦偷精品视频不卡 | 色嗨嗨av一区二区三区| 欧美伊人久久久久久久久影院| 欧美日韩国产乱码电影| 欧美一卡在线观看| 国产亚洲精品超碰| 亚洲黄色av一区| 免费美女久久99| 成人小视频免费在线观看| 91老司机福利 在线| 欧美日韩精品欧美日韩精品| 欧美一卡二卡在线观看| 国产亚洲欧美一区在线观看| 亚洲免费av网站| 免费一区二区视频| 成人免费视频网站在线观看| 欧美中文字幕一区二区三区亚洲| 日韩视频永久免费| 国产精品免费av| 五月综合激情日本mⅴ| 国产综合色视频| 日本伦理一区二区| 精品国产百合女同互慰| 亚洲欧美色综合| 极品美女销魂一区二区三区| 91美女精品福利| 2023国产一二三区日本精品2022| 亚洲欧美在线观看| 精品午夜一区二区三区在线观看| 99久久精品一区| 精品剧情在线观看| 亚洲第一电影网| 成人性生交大片免费| 日韩三级伦理片妻子的秘密按摩| 国产精品久久久久影院老司 | 视频在线在亚洲| 成人网在线免费视频| 日韩一区二区三区在线| 亚洲另类在线视频| 国产在线精品一区二区| 欧美日韩一区二区三区四区五区| 中文字幕欧美日韩一区| 久久99国产精品麻豆| 欧美视频精品在线观看| 综合亚洲深深色噜噜狠狠网站| 久久99久国产精品黄毛片色诱| 色哟哟日韩精品| 国产欧美精品一区aⅴ影院| 热久久一区二区| 欧美无乱码久久久免费午夜一区| 欧美国产综合色视频| 经典三级在线一区| 91精品国产一区二区| 亚洲国产精品久久久久婷婷884| 成人精品视频一区二区三区| 欧美mv日韩mv国产网站| 丝袜亚洲另类丝袜在线| 在线观看视频91| 亚洲欧美日韩一区二区三区在线观看| 国内不卡的二区三区中文字幕| 91精品国产综合久久婷婷香蕉| 亚洲一级片在线观看| 97精品久久久午夜一区二区三区| 欧美激情在线一区二区三区| 久久99精品国产.久久久久久| 91精品久久久久久久久99蜜臂| 亚洲一区二区精品久久av| 91浏览器打开| 一区二区三区日韩精品| 91香蕉国产在线观看软件| 亚洲日韩欧美一区二区在线| 成人国产精品免费观看视频| 欧美国产日产图区| 成人免费的视频| 中文字幕一区二区三区视频| av一二三不卡影片| 亚洲色图都市小说| 在线观看日韩毛片| 亚洲一二三四区| 精品视频在线视频| 日韩电影在线免费观看| 欧美一区二区三区免费大片| 久色婷婷小香蕉久久| 亚洲精品在线免费播放| 国产精品一区二区久久精品爱涩 | 欧美国产成人在线| 懂色av中文字幕一区二区三区| 中文字幕高清不卡| 色综合天天综合狠狠| 亚洲成在人线免费| 亚洲精品一区二区三区99| 国产传媒日韩欧美成人| 亚洲婷婷综合久久一本伊一区| 99国产精品久久久| 亚洲午夜一二三区视频| 91精品国产色综合久久久蜜香臀| 黄色资源网久久资源365| 国产欧美日本一区视频| 日本韩国欧美一区| 青椒成人免费视频| 国产精品人人做人人爽人人添| 色网综合在线观看| 日本一不卡视频| 国产欧美精品一区| 欧美午夜不卡在线观看免费| 国内精品伊人久久久久av一坑| 国产精品久久久久久久久免费樱桃 | 国产超碰在线一区| 一区二区日韩av|