如何让不TideSDK窗口关闭的?(How to make TideSDK window not c

2019-10-17 15:48发布

我试图做一个TideSDK应用程序不能关闭,并最小化到系统托盘。

我有系统托盘部分想通了大部分,但是当我在tiapp.xml指定“关闭的”它不会做任何事情。 即我仍然看到“关闭”按钮,它完全关闭该应用程序。

<window>
    <id>someApp</id>
    <title>Alerts</title>
    <url>app://index.html</url>
    <width>800</width>
    <max-width>800</max-width>
    <min-width>800</min-width>
    <height>600</height>
    <max-height>600</max-height>
    <min-height>600</min-height>
    <fullscreen>false</fullscreen>
    <resizable>false</resizable>
    <chrome scrollbars="false">true</chrome>
    <maximizable>false</maximizable>
    <minimizable>true</minimizable>
    <closeable>false</closeable>
</window>

如何使它不关闭的?

Answer 1:

看看这个解决方案- https://gist.github.com/4639473



Answer 2:

我已经了解到,最灵活的方式来管理应用程序,“最小化/关闭到系统托盘”是使用启动第二个窗口隐藏的主窗口。

辅助窗口显得更灵活,再加上你必须从主隐藏窗口的管理权限。

这是我留在我的主窗口中的代码:

<head>
    <script src="app://js/jquery.min.js"></script>

    <script>
        $(function(){
            Ti.UI.currentWindow.hide();

            var alert_window = Ti.UI.createWindow({
                id: "alertWindow",
                url: "app://alert.html",
                title: "My New Window",
                baseURL: "app://alert.html",
                x: 100,
                y: 100,
                width: 500,
                minWidth: 500,
                maxWidth: 500,
                height: 500,
                minHeight: 500,
                maxHeight: 500,
                maximizable: true,
                minimizable: true,
                center: true,
                closeable: false,
                resizable: false,
                fullscreen: false,
                maximized: false,
                minimized: false,
                usingChrome: false,
                topMost: true,
                visible: true,
                transparentBackground: false,
                transparency: false
            });

            alert_window.open();
            alert_window.setTopMost( true );
        });
    </script>
</head>

<body>
</body>



文章来源: How to make TideSDK window not closeable?
标签: tidesdk