Difference between revisions of "TForm"

From Free Pascal wiki
Jump to navigationJump to search
Line 1: Line 1:
 
{{TForm}}
 
{{TForm}}
  
'''TForm''' is the class of a form object. All forms created at design time can be derived from  
+
'''TForm''' is the class of a form object. All forms created at design time can be derived from.
  
The form represents a window or dialog box that forms the user interface of an application. It is the container on which all other components (eg buttons, labels, edit fields, images...) can be inserted.
+
The form represents a window or dialog box that forms the user interface of an application. It is the container on which all other components (e.g. [[TButton|buttons]], [[TLabel|labels]], [[TEdit|edit fields]], [[TImage|images]]...) can be inserted.
  
== Further information ==
+
== See also ==
 +
* [[doc:lcl/forms/tform.html|TForm doc]]
 
* [[Form Tutorial]]
 
* [[Form Tutorial]]
* [[doc:lcl/forms/tform.html|TForm doc]]
 
  
 
[[Category:LCL]]
 
[[Category:LCL]]
 
[[Category:Forms]]
 
[[Category:Forms]]

Revision as of 16:49, 20 August 2016

Deutsch (de) English (en) suomi (fi) français (fr) 日本語 (ja) русский (ru) 中文(中国大陆)‎ (zh_CN)

TForm is the class of a form object. All forms created at design time can be derived from.

The form represents a window or dialog box that forms the user interface of an application. It is the container on which all other components (e.g. buttons, labels, edit fields, images...) can be inserted.

See also