zoukankan      html  css  js  c++  java
  • 左右停靠代码带记录

    try (cui.unregisterDialogBar test) catch()
    try (destroyDialog test) catch()
    rollout test "左右停靠" 168 height:90
    (
        button dockL "DockL" pos:[8,8] 48 height:48
        button unDockB "UnDock" pos:[104,8] 48 height:48 enabled:false
        button dockR "DockR" pos:[56,8] 48 height:48
    
        on dockL pressed do
        (   --停靠右边
            try(
            cui.RegisterDialogBar test
            cui.DockDialogBar test #cui_dock_left 
            SetINISetting "SctSet" "GlobalSet"  "Dock" "#cui_dock_left"
            unDockB.enabled = true
            DockStatus =  true
            ) catch()
        )
        on unDockB pressed do
        (   --弹出界面
            try(
            cui.UnRegisterDialogBar test
            SetINISetting "SctSet" "GlobalSet"  "Dock" "None"
            unDockB.enabled = false
            DockStatus =  false
            ) catch()
        )
        on dockR pressed do
        (   --停靠左边
            try(
            cui.RegisterDialogBar test
            cui.DockDialogBar test #cui_dock_right
            SetINISetting "SctSet" "GlobalSet"  "Dock" "#cui_dock_right"
            unDockB.enabled = true
            DockStatus =  true
            ) catch()
        )
    )
    CreateDialog test
    
    --记忆停靠位置
    if (getfiles (sysInfo.windowsdir + "\" + "SctSet")).count <1 do
    (
        SetINISetting "SctSet" "GlobalSet"  "Dock" "#cui_dock_left"
    )
    
    if (GetINISetting "SctSet" "GlobalSet"  "Dock") == "#cui_dock_left" do
    (
        Cui.RegisterDialogBar test
        Cui.DockDialogBar test #cui_dock_left
    )
    if (GetINISetting "SctSet" "GlobalSet"  "Dock") == "#cui_dock_right" do
    (
        Cui.RegisterDialogBar test
        Cui.DockDialogBar test #cui_dock_right
    )
    if (GetINISetting "SctSet" "GlobalSet"  "Dock") == "None" do
    (
        Cui.RegisterDialogBar test
    )
    View Code
  • 相关阅读:
    python基础--函数的命名空间and作用域
    MYSQL基础常识
    python基础--函数
    python基础--文件相关操作
    python基础--字符编码以及文件操作
    homebrew长时间停在Updating Homebrew 这个步骤
    python基础--数据类型的常用方法2
    python基础--数据类型的常用方法1
    python基础--定义装饰器(内置装饰器)
    angular创建组件
  • 原文地址:https://www.cnblogs.com/humd/p/12110008.html
Copyright © 2011-2022 走看看