我如何可以设置的WindowedApplication的窗口类型在Adobe AIR是轻量级

编程入门 行业动态 更新时间:2024-10-26 08:30:09
本文介绍了我如何可以设置的WindowedApplication的窗口类型在Adobe AIR是轻量级的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

是否有可能设置的WindowedApplication为轻量级的窗口类型?我不想在WindowedApplication显示在任务栏上。这是可能的,我该怎么办呢?

Is it possible to set the window type of a WindowedApplication as "lightweight"? I don't want the WindowedApplication to display on the taskbar. Is this possible and how can I do it?

推荐答案

下面是code您可以使用:

Below is the code you can use:

var window:Window = new Window(); // OR var window:BlankWindow = new BlankWindow(); window.type = NativeWindowType.LIGHTWEIGHT; window.open(true);

在哪里BlankWindow是,像这样的MXML文件:

Where BlankWindow is an mxml file like so:

<?xml version="1.0" encoding="utf-8"?> <mx:Window xmlns:mx="www.adobe/2006/mxml" layout="absolute"> <!-- Your Code Here --> </mx:Window>

希望这有助于。

Hope this helps.

更多推荐

我如何可以设置的WindowedApplication的窗口类型在Adobe AIR是轻量级

本文发布于:2023-07-17 06:49:23,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1130550.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:窗口   类型   WindowedApplication   Adobe   AIR

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!