j'ai fouillé et pas vu comment on ajoute un composant dans un flowpanel avec un code, quelle est l'instruction?
j'ai fouillé et pas vu comment on ajoute un composant dans un flowpanel avec un code, quelle est l'instruction?
Comme avec tous les autres!
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, StdCtrls; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); private { Déclarations privées } public { Déclarations publiques } end; var Form1: TForm1; implementation {$R *.dfm} var FFlowPane : TFlowPanel; procedure TForm1.FormCreate(Sender: TObject); var Button : TButton; begin { Create a new TFlowPanel pane and align it to client. } FFlowPane := TFlowPanel.Create(Self); FFlowPane.Parent := Self; FFlowPane.Align := alClient; { Set the initial flowing style. } FFlowPane.FlowStyle := fsLeftRightTopBottom; { Create a new button. } Button := TButton.Create(FFlowPane); Button.Parent := FFlowPane; Button.Caption := 'dynamic add'; end; end.
Partager