OSDN Git Service

Ring 1.10 以来となる開発環境の日本語ローカライズ版 (評価版) を追加 (ノートパッド、フォームデザイナー、対話型実行環境、ファイルの検索)。
[ring-lang-081/ring.git] / applications / build / ja-jp / formdesigner / tests / helloworld / helloworldView.ring
1 # Form/Window View - Generated Source Code File 
2 # Generated by the Ring 1.11 Form Designer
3 # Date : 17/09/2019
4 # Time : 20:29:05
5
6 Load "stdlibcore.ring"
7 Load "guilib.ring"
8
9 import System.GUI
10
11 if IsMainSourceFile() { 
12         new App {
13                 StyleFusion()
14                 new helloworldView { win.show() } 
15                 exec()
16         }
17 }
18
19 class helloworldView from WindowsViewParent
20         win = new MainWindow() { 
21                 move(37,68)
22                 resize(400,400)
23                 setWindowTitle("Hello, World!")
24                 setstylesheet("background-color:;") 
25         }
26
27 # End of the Generated Source Code File...