source: projects/update-watch/branch/1.x/src/update-watch/FUpdate.form @ 1726

Revision 1726, 1.6 KB checked in by kazutaka, 14 years ago (diff)

ソースを更新。(ダイアログのデフォルトボタンを調整)

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,55,32)
5  Text = ("Check updates")
6  Icon = Picture["update-watch.png"]
7  Stacking = Window.Above
8  Arrangement = Arrange.Vertical
9  Spacing = 8
10  Padding = 8
11  { Panel2 Panel
12    MoveScaled(1,1,65,7)
13    { pbxIcon PictureBox
14      MoveScaled(0,0,6,6)
15      Picture = Picture["update-watch.png"]
16    }
17    { TextLabel1 TextLabel
18      MoveScaled(7,0,53,6)
19      Text = ("<big><b>Check latest updates</b></big>")
20      Alignment = Align.Normal
21      Transparent = True
22    }
23  }
24  { hbxTop HBox
25    MoveScaled(1,8,53,18)
26    Expand = True
27    AutoResize = True
28    { pbxDummy PictureBox
29      MoveScaled(1,1,1,6)
30    }
31    { tlbMessage TextLabel
32      MoveScaled(5,1,42,14)
33      Expand = True
34      Text = ("You can get security fix and/or improvemen by applying updates to your system.<br>\nYou shuld donload latest update information and check updates.<br>\n<br>\nBy clicking 'Check updates' button, download update information from internet and confirm updates.<br>\n<br>\nYou can see online help by clicking 'Help' button<br>\n")
35    }
36  }
37  { hbxBottom HBox
38    MoveScaled(1,27,53,4)
39    Spacing = 8
40    { btnHelp Button
41      MoveScaled(2,0,12,4)
42      Text = ("&Help")
43      Picture = Picture["icon:/24/help"]
44    }
45    { btnCheck Button
46      MoveScaled(16,0,18,4)
47      Text = ("Check &updates")
48      Picture = Picture["icon:/24/refresh"]
49      Default = True
50    }
51    { Panel1 Panel
52      MoveScaled(36,0,1,4)
53      Expand = True
54    }
55    { btnClose Button
56      MoveScaled(39,0,13,4)
57      Text = ("&Close")
58      Picture = Picture["icon:/24/close"]
59    }
60  }
61}
Note: See TracBrowser for help on using the repository browser.