|
发表于 2023-11-9 09:08:31
|
显示全部楼层
- #include
- #include
- guicreate("垂直居中输入框示例", 300, 200)
- $input1 = guictrlcreateinput("", 10, 10, 200, 30)
- guictrlsetdata(-1, "这是一个垂直居中的输入框")
- guictrlsetstyle($input1, $es_center) ; 设置输入框的样式为居中
- guisetstate(@sw_show)
- while 1
- switch guigetmsg()
- case $gui_event_close
- exitloop
- endswitch
- wend
复制代码
这种居中嘛? 文字可以设置大小来显示居中。 |
|