當(dāng)前位置:首頁 > 芯聞號(hào) > 充電吧
[導(dǎo)讀](譯者注:在看下面的翻譯前最好下載一下視頻DEMO??? 推薦!) http://www.jetbrains.com/idea/training/demos/UI_Designer1_Deploy.z

(譯者注:在看下面的翻譯前最好下載一下視頻DEMO??? 推薦!)

http://www.jetbrains.com/idea/training/demos/UI_Designer1_Deploy.zip

http://www.jetbrains.com/idea/training/demos/UI_Designer2_Deploy.zip

http://www.jetbrains.com/idea/training/demos/UI_Designer3_Deploy.zip

IDEA’s new innovative GUI designer uses a grid paradigm for the quick and easy creation and maintenance of both complex and simple component layouts. Due to unique byte-code instrumentation techniques your sources will no longer be cluttered with tons of hard-to-maintain GUI-constructing code.

IDEA引入個(gè)具有革命性的用戶界面設(shè)計(jì),你可以用表格輕易的創(chuàng)建和維護(hù)那些不管是簡單的還是復(fù)雜的用戶界面布局。由于首創(chuàng) byte-code instrumentation 技術(shù)的引入,使你的程序中再也沒有臃腫拖沓的界面構(gòu)造代碼。


Visual form creation and modification(可視化的表單創(chuàng)建與修改)

A rich set of visual form-building tools is incorporated into a convenient editor pane. With the help of an intuitive user interface, you can quickly learn and start using the GUI Designer.

一個(gè)功能強(qiáng)大的GUI Designer被集成于編輯器中,由于可以直接看到用戶界面的結(jié)果你可以用GUI Designer快速開發(fā)出界面。

Even complex GUI forms can be easily created from scratch. When you need to introduce structural changes into existing GUI forms, you do not need to break the entire form layout. Re-arranging, adding or deleting GUI components can be made locally, in a quick and easy way. 即使是復(fù)雜的界面也可以被輕易的構(gòu)造出來 當(dāng)你需要改變一個(gè)已經(jīng)設(shè)計(jì)好的Form時(shí),你不需要打亂目前的整個(gè)Form的Layout,只需要簡單的重新布局一下就可以了,不論是插入還是刪除GUI components 都可以輕松搞定!

(譯者注:這樣的界面布局設(shè)計(jì),已經(jīng)可以接近VB、Delphi的RAD了!)



GUI layout is separated from code(界面布局與代碼向獨(dú)立,互不影響!) GUI layout information is separated from your Java code, and is stored in devoted XML-based form files. Each GUI form is bound to a Java class, and form components are referred by class fields. Unique Byte-code instrumentation technics allow you to get rid of complicated Swing code in your Java sources. IDEA’s GUI-compiler transparently generates all code necessary to create and lay out form components. The GUI-compiler has been integrated into IDEA’s make functionality, and is also available as a separate Ant task delivered together with the IDEA distribution.
There is also an option to generate Java source code instead of using the byte-code instrumentation approach. GUI layout 的數(shù)據(jù)信息和你的Java代碼相分離,它儲(chǔ)存在一個(gè)XML格式的文件中。他們之間是綁定起來的,當(dāng)然,代碼可以訪問你的form components的 獨(dú)創(chuàng)的Byte-code instrumentation 技術(shù)允許你從你得Java代碼中脫離掉臃腫的Swing構(gòu)建代碼,IDEA的 GUI-compiler 使你創(chuàng)建的界面代碼對于你是完全透明的。GUI-compiler 的引入增強(qiáng)了IDEA的功能,他作為一個(gè)Ant task和IDEA一起發(fā)布。當(dāng)然,你也可以用最原始的方法去開發(fā)你的Java程序,而不用byte-code instrumentation技術(shù)

(譯者注:用GUI-Designer設(shè)計(jì)界面,然后GUI-compiler會(huì)幫你將這界面所保存成的XML文件和你得Java代碼綁定在一起,這個(gè)技術(shù)就是byte-code instrumentation)


Binding of GUI form components to class and class fields(表單控件與class之間的綁定)

You can quickly bind your GUI form to an existing class. If there is no class, to bind with the form, you can create it right from the GUI Designer. Just enter a desired class name - the lightbulb will appear with an intention action to create a new class.

你可以快速的將你的GUI form 和一個(gè)已存在的class綁定起來,如果這個(gè)class不存在,GUI Designer會(huì)根據(jù)你的GUI form來創(chuàng)建一個(gè)class,只需要輸入一個(gè)class名——小燈泡會(huì)醒目的出現(xiàn)在將要新創(chuàng)建的class上

Binding particular GUI components to class fields is exactly as easy as binding the form to the class.

綁定一些控件到 class 的 fields 也和這個(gè)步驟一樣簡單


Ant task supplied for compiling GUI forms into your builds(可視化的GUI設(shè)計(jì)在你的程序里以Ant task的方式出現(xiàn))

The bundled Ant task supports byte-code instrumentation technics for compiling IDEA GUI forms. It provides the following benefits:

被綁定的 Ant task 完全支持byte-code instrumentation technics ,有以下優(yōu)點(diǎn):

You can quickly integrate the generated GUI forms into your project build Use of GUI designer doesn’t force you to keep all of your coding in IDEA (especially useful when team members work with different IDEs). 快速的與你的工程文件結(jié)合 這種GUI設(shè)計(jì)不一定只針對IDEA,尤其在你的同事在用其他IDE時(shí)。
I18N support(支持I18N)

Text values on GUI components can be specified either by constant strings, or be obtained from the specified resource bundle.

出現(xiàn)在 GUI components 上的文字能以常量或資源(XML)的方式記錄下來。


Ability to create custom palettes(可以創(chuàng)建自己的palettes)

The Additional Component Palette option (available in IDEA settings) enables you to add an additional palette of Swing components, containing your own custom UI beans and/or beans from one or more third-party libraries, to the GUI Designer’s component palette.

在IDEA設(shè)定的選項(xiàng)里的 Additional Component Palette 可以讓你添加額外的Swing components的palette,包括你自己的或第三方的 UI beans 。

(譯者注:如果還不太了解的話,可以看看那三個(gè)演示文件。說實(shí)話,若說以前我對Java的GUI設(shè)計(jì)還憤憤不滿的話,那么IntelliJ IDEA 4 讓我徹底的閉嘴了。)

本站聲明: 本文章由作者或相關(guān)機(jī)構(gòu)授權(quán)發(fā)布,目的在于傳遞更多信息,并不代表本站贊同其觀點(diǎn),本站亦不保證或承諾內(nèi)容真實(shí)性等。需要轉(zhuǎn)載請聯(lián)系該專欄作者,如若文章內(nèi)容侵犯您的權(quán)益,請及時(shí)聯(lián)系本站刪除。
換一批
延伸閱讀

9月2日消息,不造車的華為或?qū)⒋呱龈蟮莫?dú)角獸公司,隨著阿維塔和賽力斯的入局,華為引望愈發(fā)顯得引人矚目。

關(guān)鍵字: 阿維塔 塞力斯 華為

加利福尼亞州圣克拉拉縣2024年8月30日 /美通社/ -- 數(shù)字化轉(zhuǎn)型技術(shù)解決方案公司Trianz今天宣布,該公司與Amazon Web Services (AWS)簽訂了...

關(guān)鍵字: AWS AN BSP 數(shù)字化

倫敦2024年8月29日 /美通社/ -- 英國汽車技術(shù)公司SODA.Auto推出其旗艦產(chǎn)品SODA V,這是全球首款涵蓋汽車工程師從創(chuàng)意到認(rèn)證的所有需求的工具,可用于創(chuàng)建軟件定義汽車。 SODA V工具的開發(fā)耗時(shí)1.5...

關(guān)鍵字: 汽車 人工智能 智能驅(qū)動(dòng) BSP

北京2024年8月28日 /美通社/ -- 越來越多用戶希望企業(yè)業(yè)務(wù)能7×24不間斷運(yùn)行,同時(shí)企業(yè)卻面臨越來越多業(yè)務(wù)中斷的風(fēng)險(xiǎn),如企業(yè)系統(tǒng)復(fù)雜性的增加,頻繁的功能更新和發(fā)布等。如何確保業(yè)務(wù)連續(xù)性,提升韌性,成...

關(guān)鍵字: 亞馬遜 解密 控制平面 BSP

8月30日消息,據(jù)媒體報(bào)道,騰訊和網(wǎng)易近期正在縮減他們對日本游戲市場的投資。

關(guān)鍵字: 騰訊 編碼器 CPU

8月28日消息,今天上午,2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)開幕式在貴陽舉行,華為董事、質(zhì)量流程IT總裁陶景文發(fā)表了演講。

關(guān)鍵字: 華為 12nm EDA 半導(dǎo)體

8月28日消息,在2024中國國際大數(shù)據(jù)產(chǎn)業(yè)博覽會(huì)上,華為常務(wù)董事、華為云CEO張平安發(fā)表演講稱,數(shù)字世界的話語權(quán)最終是由生態(tài)的繁榮決定的。

關(guān)鍵字: 華為 12nm 手機(jī) 衛(wèi)星通信

要點(diǎn): 有效應(yīng)對環(huán)境變化,經(jīng)營業(yè)績穩(wěn)中有升 落實(shí)提質(zhì)增效舉措,毛利潤率延續(xù)升勢 戰(zhàn)略布局成效顯著,戰(zhàn)新業(yè)務(wù)引領(lǐng)增長 以科技創(chuàng)新為引領(lǐng),提升企業(yè)核心競爭力 堅(jiān)持高質(zhì)量發(fā)展策略,塑強(qiáng)核心競爭優(yōu)勢...

關(guān)鍵字: 通信 BSP 電信運(yùn)營商 數(shù)字經(jīng)濟(jì)

北京2024年8月27日 /美通社/ -- 8月21日,由中央廣播電視總臺(tái)與中國電影電視技術(shù)學(xué)會(huì)聯(lián)合牽頭組建的NVI技術(shù)創(chuàng)新聯(lián)盟在BIRTV2024超高清全產(chǎn)業(yè)鏈發(fā)展研討會(huì)上宣布正式成立。 活動(dòng)現(xiàn)場 NVI技術(shù)創(chuàng)新聯(lián)...

關(guān)鍵字: VI 傳輸協(xié)議 音頻 BSP

北京2024年8月27日 /美通社/ -- 在8月23日舉辦的2024年長三角生態(tài)綠色一體化發(fā)展示范區(qū)聯(lián)合招商會(huì)上,軟通動(dòng)力信息技術(shù)(集團(tuán))股份有限公司(以下簡稱"軟通動(dòng)力")與長三角投資(上海)有限...

關(guān)鍵字: BSP 信息技術(shù)
關(guān)閉
關(guān)閉