Difference between revisions of "Standard tab"

From Lazarus wiki
Jump to navigationJump to search
Line 48: Line 48:
 
[[Image:tmemo.png]]
 
[[Image:tmemo.png]]
  
Memos are places where you can put lines of text. Use this if you want to allow your user to enter messages or notes, etc.  
+
Memos are places where you can put multiple lines of text. Use this if you want to allow your user to enter messages or notes, etc.  
  
[[doc:lcl/menus/tmemo.html|TMemo]]
+
[[doc:lcl/stdctrls/tmemo.html|TMemo]]
  
 
== TToggleBox ==
 
== TToggleBox ==

Revision as of 13:16, 4 June 2008

See also Lazarus Tutorial#The Component Palette

Component Palette Standard tab Component Palette Standart.png

TMainMenu

tmainmenu.png

Puts a standard menu bar in the form.

Main Menu is a non-visible component : that is, if the icon is selected from the Component Pallete and placed on the Form, it will not appear at Run-time. Instead, a Menu bar with a structure defined by the Menu Editor will appear.

To see the Menu Editor, right-click or double-click on the Main Menu icon on your Form. TMainMenu

TPopupMenu

tpopupmenu.png

Puts a popup menu in the form. This creates a menu that appears when the user right clicks on an object. To change the contents double-click on the icon on the form. TPopupMenu

TButton

tbutton.png

Puts a button in the form. The user will be able to 'click' on this button and call the onClick event handler (form class method) in your program. The programmer should supply this method to define the action to be taken.

TButton

TLabel

tlabel.png

Puts a brief text label on the Form near any object that needs to be identified. TLabel

TEdit

tedit.png

Allows the user to input text. TEdit

TMemo

tmemo.png

Memos are places where you can put multiple lines of text. Use this if you want to allow your user to enter messages or notes, etc.

TMemo

TToggleBox

ttogglebox.png

Puts togglebox in the form. TToggleBox

TCheckBox

tcheckbox.png

Allow the user to switch them on and off. TCheckBox

TRadioButton

tradiobutton.png

Allow the user to switch them on and off. But only one can be selected. TRadioButton

TListBox

tlistbox.png

Display list. User can select an entry by clicking on it. TListBox

TComboBox

tcombobox.png

Display list. User can select an entry by clicking on it. TComboBox

TScrollBar

tscrollbar.png

A ScrollBar can be used on forms for Text, Graphics, Volume Controls, and the like. The slider is moved via user interaction. The software detects the new position and performs some function. TScrollBar

TGroupBox

tgroupbox.png

It acts as a presentational container for other control. TGroupBox

TStaticText

tstatictext.png

TStaticText

TRadioGroup

tradiogroup.png

TRadioGroup

TCheckGroup

tcheckgroup.png

To edit CheckGroup contents double-click on the icon on the form. It opens a CheckGroup Editor. TCheckGroup

TPanel

tpanel.png

Puts panel in the form. It acts as a presentational container for other control. TPanel

TActionList

tactionlist.png

To edit actionlist contents double-click on the icon on the form. It opens the Action List Editor. TActionList