⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xpradiobutton.ctl

📁 驾驶员考试系统界面不错在98下运行C/S模式
💻 CTL
字号:
VERSION 5.00
Begin VB.UserControl xpradiobutton 
   ClientHeight    =   450
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   1515
   FillStyle       =   0  'Solid
   MaskColor       =   &H00000000&
   ScaleHeight     =   30
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   101
   ToolboxBitmap   =   "xpradiobutton.ctx":0000
   Begin VB.PictureBox p 
      AutoRedraw      =   -1  'True
      BorderStyle     =   0  'None
      Height          =   195
      Left            =   120
      ScaleHeight     =   13
      ScaleMode       =   3  'Pixel
      ScaleWidth      =   13
      TabIndex        =   1
      Top             =   120
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   7
      Left            =   840
      Picture         =   "xpradiobutton.ctx":0312
      Top             =   1080
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   6
      Left            =   600
      Picture         =   "xpradiobutton.ctx":0382
      Top             =   1080
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   5
      Left            =   360
      Picture         =   "xpradiobutton.ctx":04DF
      Top             =   1080
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   4
      Left            =   120
      Picture         =   "xpradiobutton.ctx":0648
      Top             =   1080
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   3
      Left            =   840
      Picture         =   "xpradiobutton.ctx":079F
      Top             =   840
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   2
      Left            =   600
      Picture         =   "xpradiobutton.ctx":07FA
      Top             =   840
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   1
      Left            =   360
      Picture         =   "xpradiobutton.ctx":08DF
      Top             =   840
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Image img 
      Height          =   195
      Index           =   0
      Left            =   120
      Picture         =   "xpradiobutton.ctx":0A3B
      Top             =   840
      Visible         =   0   'False
      Width           =   195
   End
   Begin VB.Label lbl 
      Appearance      =   0  'Flat
      AutoSize        =   -1  'True
      BackColor       =   &H80000005&
      BackStyle       =   0  'Transparent
      Caption         =   "Label1"
      ForeColor       =   &H80000008&
      Height          =   195
      Left            =   480
      TabIndex        =   0
      Top             =   120
      Width           =   480
   End
End
Attribute VB_Name = "xpradiobutton"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINT_API) As Long
Private Declare Function ScreenToClient Lib "user32" (ByVal hWnd As Long, lpPoint As POINT_API) As Long
Private Declare Function ExtFloodFill Lib "gdi32" (ByVal hdc As Long, ByVal X As Long, ByVal Y As Long, ByVal crColor As Long, ByVal wFillType As Long) As Long

Private Type POINT_API
  X As Long
  Y As Long
End Type

Dim m_Font As Font
Dim m_Value As Boolean
Dim m_BackColor As OLE_COLOR
Dim m_ForeColor As OLE_COLOR

Const m_def_Value = False
Const m_def_BackColor = vbButtonFace
Const m_def_ForeColor = vbBlack

Event Click()
Attribute Click.VB_UserMemId = -600
Event KeyDown(KeyCode As Integer, Shift As Integer)
Attribute KeyDown.VB_UserMemId = -602
Event KeyPress(KeyAscii As Integer)
Attribute KeyPress.VB_UserMemId = -603
Event KeyUp(KeyCode As Integer, Shift As Integer)
Attribute KeyUp.VB_UserMemId = -604
Event MouseOut()
Event MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Attribute MouseDown.VB_UserMemId = -605
Event MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Attribute MouseMove.VB_UserMemId = -606
Event MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
Attribute MouseUp.VB_UserMemId = -607

Private Sub lbl_Change()
  UserControl_Resize
End Sub

Private Sub lbl_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  p_MouseDown Button, Shift, X, Y
End Sub

Private Sub lbl_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  p_MouseMove Button, Shift, 0, 0
End Sub

Private Sub lbl_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
  p_MouseMove Button, Shift, X, Y
End Sub

Private Sub p_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
  If Enabled = True Then
    If Value = True Then
      p.Picture = Img(6).Picture
    ElseIf Value = False Then
      p.Picture = Img(2).Picture
    End If
  End If
End Sub

Private Sub p_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
  If Not ((X < 0) Or (Y < 0) Or (X > p.ScaleWidth) Or (Y > p.ScaleHeight)) Then
    If Button <> vbLeftButton Or UserControl.Tag <> "" Then
      If Button = vbLeftButton Then
        If Enabled = True Then
          If Value = True Then
            p.Picture = Img(6).Picture
          ElseIf Value = False Then
            p.Picture = Img(2).Picture
          End If
        End If
      Else
        If Enabled = True Then
          If Value = True Then
            p.Picture = Img(5).Picture
          ElseIf Value = False Then
            p.Picture = Img(1).Picture
          End If
        End If
      End If
    End If
    
    SetCapture p.hWnd
  Else
    define_pic
    ReleaseCapture
    
    RaiseEvent MouseOut
  End If
End Sub

Private Sub p_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
  If UserControl.Tag <> "" Then
    Dim rd As Object
    
    RaiseEvent Click
    
    For Each rd In UserControl.Parent
      If TypeOf rd Is xpradiobutton Then
        rd.Value = False
      End If
    Next rd
    Value = True
    define_pic
  End If
End Sub

Private Sub UserControl_EnterFocus()
  UserControl.Tag = "1  "
End Sub

Private Sub UserControl_ExitFocus()
  UserControl.Tag = ""
End Sub

Private Sub UserControl_Initialize()
  UserControl_Resize
  define_pic
  UserControl.BackColor = m_BackColor
End Sub

Public Property Get Enabled() As Boolean
Attribute Enabled.VB_ProcData.VB_Invoke_Property = ";Behavior"
Attribute Enabled.VB_UserMemId = -514
  Enabled = UserControl.Enabled
End Property

Public Property Let Enabled(ByVal New_Enabled As Boolean)
  UserControl.Enabled() = New_Enabled
  If Enabled = False Then
    enabled_pic
  Else
    define_pic
  End If
  
  If Enabled = True Then
    lbl.ForeColor = m_ForeColor
  Else
    lbl.ForeColor = RGB(161, 161, 146)
  End If
End Property

Private Sub UserControl_InitProperties()
  Caption = Ambient.DisplayName
  Enabled = True
  Value = False
  Set Font = UserControl.Ambient.Font
  BackColor = m_def_BackColor
  ForeColor = m_def_ForeColor
End Sub

Private Sub UserControl_KeyDown(KeyCode As Integer, Shift As Integer)
  RaiseEvent KeyDown(KeyCode, Shift)
End Sub

Private Sub UserControl_KeyPress(KeyAscii As Integer)
  RaiseEvent KeyPress(KeyAscii)
End Sub

Private Sub UserControl_KeyUp(KeyCode As Integer, Shift As Integer)
  RaiseEvent KeyUp(KeyCode, Shift)
End Sub

Private Sub UserControl_ReadProperties(PropBag As PropertyBag)
  Value = PropBag.ReadProperty("Value", m_def_Value)
  Caption = PropBag.ReadProperty("Caption", Ambient.DisplayName)
  Enabled = PropBag.ReadProperty("Enabled", True)
  Set Font = PropBag.ReadProperty("Font", UserControl.Ambient.Font)
  BackColor = PropBag.ReadProperty("BackColor", m_def_BackColor)
  ForeColor = PropBag.ReadProperty("ForeColor", m_def_ForeColor)
End Sub

Private Sub UserControl_Resize()
  p.Left = 0
  p.Top = (UserControl.ScaleHeight - p.ScaleHeight) \ 2
  lbl.Top = p.Top + 1
  lbl.Left = 18
End Sub

Private Sub UserControl_WriteProperties(PropBag As PropertyBag)
  Call PropBag.WriteProperty("Font", m_Font, UserControl.Ambient.Font)
  Call PropBag.WriteProperty("Value", m_Value, m_def_Value)
  Call PropBag.WriteProperty("Caption", lbl.Caption, Ambient.DisplayName)
  Call PropBag.WriteProperty("Enabled", UserControl.Enabled, True)
  Call PropBag.WriteProperty("BackColor", m_BackColor, m_def_BackColor)
  Call PropBag.WriteProperty("ForeColor", m_ForeColor, m_def_ForeColor)
End Sub

Public Property Get Value() As Boolean
  Value = m_Value
End Property

Public Property Let Value(ByVal vNewValue As Boolean)
  m_Value = vNewValue
  define_pic
  PropertyChanged "Value"
End Property

Public Property Get Caption() As String
Attribute Caption.VB_ProcData.VB_Invoke_Property = ";Appearance"
Attribute Caption.VB_UserMemId = -518
  Caption = lbl.Caption
End Property

Public Property Let Caption(ByVal vNewCaption As String)
  lbl.Caption() = vNewCaption
  Call UserControl_Resize
  PropertyChanged "Caption"
End Property

Public Property Get Font() As Font
  Set Font = m_Font
End Property

Public Property Set Font(ByVal vNewFont As Font)
  Set m_Font = vNewFont
  Set UserControl.Font = vNewFont
  Set lbl.Font = m_Font
  Call UserControl_Resize
  PropertyChanged "Font"
End Property

Private Function define_pic()
  If Enabled = True Then
    If Value = True Then
      p.Picture = Img(4).Picture
    ElseIf Value = False Then
      p.Picture = Img(0).Picture
    End If
  Else
    enabled_pic
  End If
End Function

Private Function enabled_pic()
  If Value = True Then
    p.Picture = Img(7).Picture
  ElseIf Value = False Then
    p.Picture = Img(3).Picture
  End If
End Function

Public Property Get BackColor() As OLE_COLOR
  BackColor = m_BackColor
End Property

Public Property Let BackColor(ByVal New_BackColor As OLE_COLOR)
  m_BackColor = New_BackColor
  PropertyChanged "BackColor"
  UserControl.BackColor = m_BackColor
End Property

Public Property Get ForeColor() As OLE_COLOR
Attribute ForeColor.VB_ProcData.VB_Invoke_Property = ";Appearance"
Attribute ForeColor.VB_UserMemId = -513
  ForeColor = m_ForeColor
End Property

Public Property Let ForeColor(ByVal New_ForeColor As OLE_COLOR)
  m_ForeColor = New_ForeColor
  PropertyChanged "ForeColor"
  If Enabled = True Then
    lbl.ForeColor = m_ForeColor
  Else
    lbl.ForeColor = RGB(161, 161, 146)
  End If
End Property

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -