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

Revision 3922, 1.4 KB checked in by kazutaka, 13 years ago (diff)

読み込み中のメッセージを追加

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,63,44)
5  Text = ("List of updates")
6  Icon = Picture["update-watch.png"]
7  Arrangement = Arrange.Vertical
8  Spacing = 8
9  Padding = 8
10  { hbxTop HBox
11    MoveScaled(1,0,53,8)
12    AutoResize = True
13    Spacing = 8
14    { pbxIcon PictureBox
15      MoveScaled(0,1,6,6)
16      Picture = Picture["icon:/48/refresh"]
17    }
18    { tlbTitle TextLabel
19      MoveScaled(8,1,42,5)
20      Expand = True
21      AutoResize = True
22      Text = ("Reading package information...")
23      Alignment = Align.Normal
24    }
25  }
26  { cvwPackage ColumnView
27    MoveScaled(1,9,53,26)
28    Expand = True
29    Mode = Select.None
30    Sorted = True
31    Header = False
32    Resizable = True
33  }
34  { tlbInfo TextLabel
35    MoveScaled(1,36,53,2)
36    AutoResize = True
37    Text = ("")
38    Alignment = Align.Normal
39  }
40  { hbxBottom HBox
41    MoveScaled(1,39,53,4)
42    Spacing = 8
43    { btnHelp Button
44      MoveScaled(0,0,5,4)
45      Text = ("&Help")
46    }
47    { Panel2 Panel
48      MoveScaled(6,0,1,4)
49      Expand = True
50    }
51    { btnUpgrade Button
52      MoveScaled(8,0,9,4)
53      Visible = False
54      Text = ("&Upgrade all")
55    }
56    { btnRun Button
57      MoveScaled(18,0,9,4)
58      Visible = False
59      Text = ("&Run package manager")
60    }
61    { btnReboot Button
62      MoveScaled(28,0,9,4)
63      Visible = False
64      Text = ("&Reboot now")
65    }
66    { btnClose Button
67      MoveScaled(44,0,8,4)
68      Text = ("&Close")
69    }
70  }
71}
Note: See TracBrowser for help on using the repository browser.