VB   发布时间:2022-04-03  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了使用小结(1)大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

1、屏幕显示:

全屏状态:

this.stage.displayState == "fullScreen"

最大化:

stage.nativeWindow.maximize();

最小化:同上使用

屏幕3显示判断:

stage.displayState = (stage.displayState != "fullScreen")?"fullScreen":"normal";

2、键盘事件:

private function EscKey(evt:KeyboardEvent):void{

if (evt.keyCode == Keyboard.F1 && evt.ctrlKey == truE) //同时响应两个热键,这里为ctrl+F1

if (evt.keyCode == Keyboard.ESCAPE) //相应一个键盘事件,这里为ESC

}

3、控件与其父控件的大小

如下:

//this.stage.displayState == "fullScreen"; ----------------2

var la:Label = new Label();

la.width=vb.width*0.9;

vb.addChild(la);

this.stage.displayState == "fullScreen"; ----------------------1

运行时,有可能当前显示的大小不对,这是Flex通常是normal下的格式,所以vb的width是在Normal下大小,然后在全屏,此时,vb全屏了,可是vb的孩子la却还是当vb是normal下的width;应该修改为把1,放到2的位置,这样就ok了

4、Datagrid显示序号

<mx:DataGridcolumn headerText="序号" labelFunction="GetOrder" width="50"/>

<Script>

private function GetOrder(item:Object,column:DataGridcolumn):string{

var list:ArrayCollection = listPersons.dataProvider as ArrayCollection;

var index:int = list.getItemIndex(item);

return String(index+1);

}

</Script>

5、程序最小化隐藏显示在右下角,右键显示菜单,单击启动

private function init():void{

var loader:Loader = new Loader();

loader.contentLoaderInfo.addEventListener(Event.COMPLETE,prepareForSystray);

loader.load(new URLrequest("assets/systray.png"));

}

private function windowClosing(evt:Event):void

{

evt.stopImmediatePropagation();

evt.stopPropagation();

evt.preventDefault();

dock();

}

private function closeApp(evt:Event):void

{

this.exit();

}

public function prepareForSystray(event:Event):void {

//Retrieve the image being used as the systray icon

dockImage = event.target.content.bitmaPDAta;

//For windows systems we can set the systray props

//(there's also an implementation for mac's,it's similar and you can find it on the net... ;) )

if (NativeApplication.supportsSystemTrayIcon){

setSystemTrayProperties();

//Set some systray menu options,so that the user can right-click and access functionality

//without needing to open the application

SystemTrayIcon(NativeApplication.nativeApplication.icon).menu = createSystrayRootMenu();

}

dock();

}

private function createSystrayRootMenu():NativeMenu{

//Add the menuitems with the corresponding actions

var menu:NativeMenu = new NativeMenu();

var openNativeMenuItem:NativeMenuItem = new NativeMenuItem("显示");

var exitNativeMenuItem:NativeMenuItem = new NativeMenuItem("退出");

//what should happen when the user clicks on something...

openNativeMenuItem.addEventListener(Event.SELECT,undock);

exitNativeMenuItem.addEventListener(Event.SELECT,closeApp);

@H_253_32@menu.addItem(openNativeMenuItem);

@H_253_32@menu.addItem(new NativeMenuItem("",truE));//separator

@H_253_32@menu.addItem(exitNativeMenuItem);

return menu;

}

private function setSystemTrayProperties():void{

//Text to show when hovering of the docked application icon

SystemTrayIcon(NativeApplication.nativeApplication.icon).tooltip = "公告板程序";

//We want to be able to open the application after it has been docked

SystemTrayIcon(NativeApplication.nativeApplication.icon).addEventListener(MouseEvent.CLICK,undock);

//Listen to the display state changing of the window,so that we can catch the minimize

stage.nativeWindow.addEventListener(NativeWindowDisplayStateEvent.DISPLAY_STATE_CHANGING,nwMinimized); //Catch the minimize event

}

private function nwMinimized(displayStateEvent:NativeWindowDisplayStateEvent):void {

if(displayStateEvent.afterDisplayState == NativeWindowDisplayState.MINIMIZED) {

//Prevent the windowedapplication minimize action from happening and implement our own minimize

//The reason the windowedapplication minimize action is caught,is that if active we're not able to

//undock the application BACk neatly. The application doesn't become visible directly,but only after clicking

//on the taskbars application link. (Not sure yet what happens exactly with standard minimizE)

displayStateEvent.preventDefault();

//Dock (our own minimizE)

dock();

}

}

public function dock():void {

//Hide the applcation

stage.nativeWindow.visible = false;

//SetTing the bitmaps array will show the application icon in the systray

NativeApplication.nativeApplication.icon.bitmaps = [dockImage];

@H_253_32@modelManager.SendMsg(ModelManager.bOARDOVER);

}

public function undock(evt:Event):void {

//After setTing the window to visible,make sure that the application is ordered to the front,

//else we'll still need to click on the application on the taskbar to make it visible

stage.nativeWindow.visible = true;

stage.nativeWindow.orderToFront();

stage.nativeWindow.activate();

//Clearing the bitmaps array also clears the applcation icon from the systray

NativeApplication.nativeApplication.icon.bitmaps = [];

this.stage.nativeWindow.maximize();

//this.stage.displayState = "fullScreen";

}

6、Flex显示的CSS(自定义的效果)效果必须定义在WindowedApplication中,其他地方不会显示的。

一个CSS效果:

<mx:Style>

Alert {

titleStylename: "alerttitle";

messageStylename: "alertmessage";

buttonStylename: "alertButton";

dropShadowEnabled: true;

shadowDistance: 5;

shadowDirection: right;

cornerRadius: 5;

BACkground-color: #E9FFEA;

}

.alerttitle {

letterSpacing: 0;

fontSize: 16;

color: red;

}

.alertmessage {

letterSpacing: 0;

fontSize: 16;

fontWeight: normal;

color: black;

}

.alertButton {

letterSpacing: 0;

fontSize: 16;

cornerRadius: 10;

fontWeight: normal;

}

ToolTip {

fontSize: 14;

fontWeight: normal;

BACkgroundColor: #22DD00;

dropShadowEnabled: true;

}

.body {

font-size: 12px;

font-family: Arial,Helvetica,sans-serif;

filter: style=1,startY=0,finishY=100,startX=100,finishX=100;

BACkground-color: #666666;

}

</mx:Style>

Flex自带的名称前面不加“.”,如果想要引用自定义css,则前面加“.”,然后在相应属性的stylename=“body”

大佬总结

以上是大佬教程为你收集整理的使用小结(1)全部内容,希望文章能够帮你解决使用小结(1)所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:1使用小结