代码搜索:UserControl
找到约 3,988 项符合「UserControl」的源代码
代码结果 3,988
www.eeworm.com/read/246890/12699279
ctl xptopbuttons.ctl
VERSION 5.00
Object = "{27395F88-0C0C-101B-A3C9-08002B2F49FB}#1.1#0"; "PICCLP32.OCX"
Begin VB.UserControl xptopbuttons
CanGetFocus = 0 'False
ClientHeight = 1455
ClientLeft
www.eeworm.com/read/246890/12699288
ctl xpcheckbox.ctl
VERSION 5.00
Object = "{27395F88-0C0C-101B-A3C9-08002B2F49FB}#1.1#0"; "PICCLP32.OCX"
Begin VB.UserControl xpcheckbox
AutoRedraw = -1 'True
ClientHeight = 3060
ClientLeft
www.eeworm.com/read/246890/12699296
ctl xpcmdbutton.ctl
VERSION 5.00
Object = "{27395F88-0C0C-101B-A3C9-08002B2F49FB}#1.1#0"; "PICCLP32.OCX"
Begin VB.UserControl xpcmdbutton
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColo
www.eeworm.com/read/145166/12747373
ctl xbutton.ctl
VERSION 5.00
Begin VB.UserControl XButton
AutoRedraw = -1 'True
ClientHeight = 570
ClientLeft = 0
ClientTop = 0
ClientWidth = 1320
DefaultCa
www.eeworm.com/read/331849/12804091
ctl xbutton.ctl
VERSION 5.00
Begin VB.UserControl XButton
AutoRedraw = -1 'True
ClientHeight = 570
ClientLeft = 0
ClientTop = 0
ClientWidth = 1320
DefaultCa
www.eeworm.com/read/329184/12971524
ctl xbutton.ctl
VERSION 5.00
Begin VB.UserControl XButton
AutoRedraw = -1 'True
ClientHeight = 570
ClientLeft = 0
ClientTop = 0
ClientWidth = 1320
DefaultCa
www.eeworm.com/read/141570/12998163
txt 86.txt
自制IE风格按纽控件
刘清涛
---- 网上的IE风格按纽控件不可谓少,然而天下的免费午餐总不会让你轻轻松松到吃下去, 其中个味众人自知。其实,在VB6.0中,IE风格按纽很容易制作,真正的核心代码只需 调用两个API函数。
---- 按常规,IE风格按纽的制作原理是,放置四条边线在Image和Label控件四周,在 Image和Label控件的MouseMove事件中,改变左,上,右 ...
www.eeworm.com/read/141570/12999383
txt 211.txt
自制IE风格按纽控件
作者:刘清涛
网上的IE风格按纽控件不可谓少,然而天下的免费午餐总不会让你轻轻松松到吃下去,其中个味众人自知。其实,在VB6.0中,IE风格按纽很容易制作,真正的核心代码只需调用两个API函数。
---- 按常规,IE风格按纽的制作原理是,放置四条边线在Image和Label控件四周,在 Image和Label控件的MouseMove事件中,改变左,上,右,下线的Vi ...
www.eeworm.com/read/328387/13030688
ctl xbutton.ctl
VERSION 5.00
Begin VB.UserControl XButton
AutoRedraw = -1 'True
ClientHeight = 570
ClientLeft = 0
ClientTop = 0
ClientWidth = 1320
DefaultCa
www.eeworm.com/read/242302/13081160
txt 在模块中调用usercontrol中的自定义事件或方法.txt
关 键 是 你 模 块 中 的 函 数 是 在 什 么 情 况 下 被 调 用 的 。 如 果 模 块 的 函 数 是 被 UserControl调 用 的 , 可 以 给 模 块 的 函 数 加 一 个 参 数 , 如 :
Public Sub MySub(Ctr As Object)
...
End Sub
在 UserControl调 用 时