source: projects/update-watch/trunk/src/update-watch/FList.form @ 474

Revision 474, 1.7 KB checked in by kazutaka, 14 years ago (diff)

ダイアログのレイアウトを変更(中)

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,60,38)
5  Text = ("Update notification")
6  Icon = Picture["update-watch.png"]
7  Arrangement = Arrange.Vertical
8  Spacing = 8
9  Padding = 8
10  { hbxTop HBox
11    MoveScaled(1,0,56,8)
12    Spacing = 8
13    { PictureBox1 PictureBox
14      MoveScaled(0,1,6,6)
15      Picture = Picture["update-watch-red.png"]
16    }
17    { tlbTitle TextLabel
18      MoveScaled(11,1,41,6)
19      Expand = True
20      AutoResize = True
21      Text = ("<big><b>Update found</b></big><br>\n<br>\nIt may includes security fixes.<br>\nPlease update immediately.")
22      Alignment = Align.TopLeft
23    }
24  }
25  { expDetail Expander
26    MoveScaled(2,9,54,17)
27    Expand = True
28    Arrangement = Arrange.Fill
29    Spacing = 4
30    Text = ("List of updates")
31    Hidden = True
32    { lctPkgs ListContainer
33      MoveScaled(2,2,50,8)
34      Expand = True
35    }
36  }
37  { hbxMiddle HBox
38    MoveScaled(1,28,56,4)
39    { Panel2 Panel
40      MoveScaled(1,0,2,4)
41    }
42    { tlbSize TextLabel
43      MoveScaled(5,1,20,2)
44      Expand = True
45      Text = ("tlbSize")
46      Alignment = Align.Normal
47    }
48    { cbxLater CheckBox
49      MoveScaled(42,1,13,2)
50      Text = ("&Upgrade later")
51    }
52  }
53  { hbxBottom HBox
54    MoveScaled(1,33,54,4)
55    Spacing = 8
56    { btnHelp Button
57      MoveScaled(1,0,9,4)
58      Text = ("&Help")
59      Picture = Picture["icon:/24/help"]
60    }
61    { btnRun Button
62      MoveScaled(11,0,17,4)
63      Text = ("&Package manager")
64      Picture = Picture["icon:/24/exec"]
65    }
66    { Panel1 Panel
67      MoveScaled(39,0,2,4)
68      Expand = True
69    }
70    { btnClose Button
71      MoveScaled(43,0,10,4)
72      Text = ("&Upgrade")
73      Picture = Picture["icon:/24/apply"]
74    }
75  }
76}
Note: See TracBrowser for help on using the repository browser.