mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 08:18:13 +02:00
customdrawn: Adds toolbar to test case
git-svn-id: trunk@52769 -
This commit is contained in:
parent
51d733e571
commit
fa97d8430e
Binary file not shown.
@ -7,13 +7,13 @@ object Form1: TForm1
|
||||
ClientHeight = 500
|
||||
ClientWidth = 463
|
||||
OnCreate = FormCreate
|
||||
LCLVersion = '1.1'
|
||||
LCLVersion = '1.7'
|
||||
object comboControls: TComboBox
|
||||
Left = 80
|
||||
Height = 23
|
||||
Height = 21
|
||||
Top = 12
|
||||
Width = 136
|
||||
ItemHeight = 15
|
||||
ItemHeight = 0
|
||||
ItemIndex = 0
|
||||
Items.Strings = (
|
||||
'TCDMenu'
|
||||
@ -61,7 +61,7 @@ object Form1: TForm1
|
||||
Height = 240
|
||||
Top = 40
|
||||
Width = 463
|
||||
PageIndex = 2
|
||||
PageIndex = 0
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
TabOrder = 2
|
||||
TabStop = True
|
||||
|
@ -183,6 +183,7 @@ end;
|
||||
procedure TForm1.FormCreate(Sender: TObject);
|
||||
var
|
||||
lItem: TCDListItems;
|
||||
lToolbar: TCDToolbar;
|
||||
begin
|
||||
// We still dont have a property editor for this
|
||||
lItem := listviewCommon.Items.Add('First', -1, -1);
|
||||
@ -196,6 +197,15 @@ begin
|
||||
lItem := listviewCommon.Items.Add('Fourth', -1, -1);
|
||||
lItem.Add('4thSub1', -1, -1);
|
||||
lItem.Add('4thSub2', -1, -1);
|
||||
|
||||
// Toolbar has no design time control right now
|
||||
lToolbar := TCDToolbar.Create(Self);
|
||||
lToolbar.Parent := pageToolbars;
|
||||
lToolbar.AddItem(tikButton);
|
||||
lToolbar.AddItem(tikCheckButton);
|
||||
lToolbar.AddItem(tikDropDownButton);
|
||||
lToolbar.AddItem(tikSeparator);
|
||||
lToolbar.AddItem(tikDivider);
|
||||
end;
|
||||
|
||||
procedure TForm1.HandleClick(Sender: TObject);
|
||||
|
Loading…
Reference in New Issue
Block a user