source: projects/update-watch/tags/2.0.0/src/update-watch/FUpdate.form @ 3780

Revision 3780, 1.5 KB checked in by kazutaka, 13 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(1,0,12,4)
42      Text = ("&Help")
43    }
44    { Panel3 Panel
45      MoveScaled(15,0,1,4)
46      Expand = True
47    }
48    { btnCheck Button
49      MoveScaled(18,0,18,4)
50      Text = ("Check &updates")
51      Default = True
52    }
53    { btnClose Button
54      MoveScaled(39,0,13,4)
55      Text = ("&Close")
56    }
57  }
58}
Note: See TracBrowser for help on using the repository browser.