Files
tools/接口/图片更新.ms
2025-07-31 16:05:55 +08:00

26 lines
614 B
Plaintext

try (destroyDialog imagetest001) catch()
rollout imagetest001 "imagetest001"
(
dotNetControl f1 "Windows.Forms.PictureBox" align:#left height:224 width:400 pos:[0,0]
timer clock "testClock" interval:33
label text001 "123"
on clock tick do
(
lab="D:\%´´ÊÀÏîÄ¿¶¯×÷¿â\3dsmax\¹ÖÎï002\creature_arieki_kalastride_fidget_v01"+"\\"+((clock.ticks) as string)+".jpg"
text001.text = lab
imagetest001.f1.ImageLocation=lab
)
on imagetest001 open do clock.active=false
on f1 MouseEnter do (clock.ticks=0;clock.active=true)
on f1 MouseLeave do (clock.ticks=0;clock.active=false)
)
createDialog imagetest001 400 244