查看: 1179|回复: 2
打印 上一主题 下一主题

移动窗体 模态窗体

[复制链接]

2508

主题

2

听众

3万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
32806
精华
12

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

跳转到指定楼层
楼主
发表于 2012-11-3 10:49:21 |只看该作者 |倒序浏览
移动窗体

//設定拖曳視窗大小

var windowRect : Rect = Rect (20, 20, 120, 50);

//限制可移動範圍

var constrain : Rect;

//滑鼠座標

private var e : Event;



function OnGUI () {

   //取得滑鼠座標

   e = Event.current;

   //顯示範圍用,可有可無

   GUI.Box(constrain, "Drag Here");

   

    windowRect = GUI.Window (0, windowRect, DoMyWindow, "My Window");

}



function DoMyWindow (windowID : int) {

   //限制可移動範圍

   if(e.mousePosition.x > constrain.x && e.mousePosition.x < (constrain.width + constrain.x) && e.mousePosition.y > constrain.y && e.mousePosition.y < (constrain.height + constrain.y)){

      GUI.DragWindow (Rect (0,0, 10000, 20));

   }

}



模态窗口

// Draws 2 overlapped windows and when clicked on 1 window's button

// Brings the other window to the front.



private var windowRect :  = [url=]Rect (20, 20, 120, 50);

private var windowRect2 :  = [url=]Rect (80, 20, 120, 50);



function OnGUI () {

windowRect = [url=]GUI.Window[/url] (0, windowRect, DoMyFirstWindow, "First");

windowRect2 = [url=]GUI.Window[/url] (1, windowRect2, DoMySecondWindow, "Second" );

}



function DoMyFirstWindow (windowID : int) {

if ( ([url=]Rect (10,20,100,20), "Bring to front"))

[url=]GUI.BringWindowToFront[/url](1); //Bring the 2nd window to front

([url=]Rect (0,0, 10000, 20));

}



function DoMySecondWindow (windowID : int) {

if ( ([url=]Rect (10,20,100,20), "Bring to front"))

[url=]GUI.BringWindowToFront[/url](0); //Bring the 1rst window to front

([url=]Rect (0,0, 10000, 20));

}








分享到: QQ好友和群QQ好友和群 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
转播转播0 分享淘帖0 收藏收藏0 支持支持0 反对反对0
回复

使用道具 举报

2317

主题

54

听众

2万

积分

资深设计师

Rank: 7Rank: 7Rank: 7

纳金币
20645
精华
62

最佳新人 活跃会员 热心会员 灌水之王 突出贡献

沙发
发表于 2012-11-4 13:23:00 |只看该作者
学习学习了。支持
回复

使用道具 举报

955

主题

164

听众

7万

积分

版主

Rank: 7Rank: 7Rank: 7

纳金币
59338
精华
28

活跃会员 荣誉管理 突出贡献 优秀版主 论坛元老

板凳
发表于 2012-11-4 23:29:30 |只看该作者
感谢分享
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

手机版|纳金网 ( 闽ICP备2021016425号-2/3

GMT+8, 2024-11-25 04:09 , Processed in 0.087034 second(s), 28 queries .

Powered by Discuz!-创意设计 X2.5

© 2008-2019 Narkii Inc.

回顶部