3 Star 3 Fork 2

tangjinfeng / tkinter-designer

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Resizer.bas 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
cdhigh 提交于 2014-02-12 23:23 . v1.4.9
Attribute VB_Name = "Resizer"
Option Explicit
'窗体控件随窗体大小而重排
Private FormOldWidth As Long
Private FormOldHeight As Long
'在调用ResizeForm前先调用本函数
Public Sub ResizeInit(FormName As Form)
Dim Obj As Control
FormOldWidth = FormName.ScaleWidth
FormOldHeight = FormName.ScaleHeight
On Error Resume Next
For Each Obj In FormName
Obj.Tag = Obj.Left & "|" & Obj.Top & "|" & Obj.Width & "|" & Obj.Height
Next Obj
End Sub
'按比例改变表单内各元件的大小,在调用ReSizeForm前先调用ReSizeInit函数
Public Sub ResizeForm(FormName As Form)
Dim pos() As String
Dim i As Long, TempPos As Long, StartPos As Long
Dim Obj As Control
Dim ScaleX As Double, ScaleY As Double
If (FormOldWidth = 0) Or (FormOldHeight = 0) Then
ResizeInit FormName
End If
ScaleX = FormName.ScaleWidth / FormOldWidth
ScaleY = FormName.ScaleHeight / FormOldHeight
On Error Resume Next
For Each Obj In FormName
ReDim pos(0) As String
pos = Split(Obj.Tag, "|")
If UBound(pos) >= 3 Then
If TypeName(Obj) = "ComboBox" Then 'ComboBox高度不能变
Obj.Move CSng(pos(0)) * ScaleX, CSng(pos(1)) * ScaleY, CSng(pos(2)) * ScaleX
Else
Obj.Move CSng(pos(0)) * ScaleX, CSng(pos(1)) * ScaleY, CSng(pos(2)) * ScaleX, CSng(pos(3)) * ScaleY
End If
End If
Next
End Sub
'获取控件的设计时的宽度
Public Function GetOrignalWidth(ctl As Control) As Single
Dim pos() As String, i As Long
On Error Resume Next
pos = Split(ctl.Tag, "|")
If UBound(pos) >= 3 Then
GetOrignalWidth = CSng(pos(2))
Else
GetOrignalWidth = 0
End If
End Function
'获取控件的设计时的高度
Public Function GetOrignalHeight(ctl As Control) As Single
Dim pos() As String, i As Long
On Error Resume Next
pos = Split(ctl.Tag, "|")
If UBound(pos) >= 3 Then
GetOrignalHeight = CSng(pos(3))
Else
GetOrignalHeight = 0
End If
End Function
Visual Basic
1
https://gitee.com/csutjf/tkinter-designer.git
git@gitee.com:csutjf/tkinter-designer.git
csutjf
tkinter-designer
tkinter-designer
master

搜索帮助