source: projects/update-watch/tags/1.1.0/src/update-watch/FList.form @ 228

Revision 228, 1.0 KB checked in by kazutaka, 15 years ago (diff)

更に重複バージョン検出ロジックの追加(中)

Line 
1# Gambas Form File 2.0
2
3{ Form Form
4  MoveScaled(0,0,60,45)
5  Text = ("List of updates")
6  Icon = Picture["update-watch.png"]
7  Arrangement = Arrange.Vertical
8  Spacing = 8
9  Padding = 8
10  { HBox2 HBox
11    MoveScaled(1,1,49,6)
12    Spacing = 8
13    { PictureBox1 PictureBox
14      MoveScaled(0,0,6,6)
15      Picture = Picture["update-watch.png"]
16    }
17    { tlbTitle TextLabel
18      MoveScaled(7,1,30,4)
19      Expand = True
20      AutoResize = True
21      Text = ("<b>Follwing packages should be updated</b>")
22      Alignment = Align.Normal
23    }
24  }
25  { lvwPackage ListView
26    MoveScaled(1,8,49,31)
27    Expand = True
28    Mode = Select.None
29    Sorted = True
30  }
31  { hbxBottom HBox
32    MoveScaled(1,40,49,4)
33    { btnHelp Button
34      MoveScaled(3,0,15,4)
35      Text = ("&Help")
36      Picture = Picture["icon:/24/help"]
37      Default = True
38    }
39    { Panel1 Panel
40      MoveScaled(24,0,4,4)
41      Expand = True
42    }
43    { btnClose Button
44      MoveScaled(33,0,15,4)
45      Text = ("&Close")
46      Picture = Picture["icon:/24/close"]
47    }
48  }
49}
Note: See TracBrowser for help on using the repository browser.