delphivcl.PageControl
is a set of pages used to make a multiple page dialog box.
We can use PageControl
to create a multiple page dialog or tabbed notebook. PageControl
displays multiple overlapping pages that are TabSheet
objects (we will discuss TabSheet
in another article).
The user selects a page by clicking the page’s tab that appears at the top of the control.
You can define an accelerator key to a page of the PageControl
. To define the accelerator key use the Caption
property of the TabSheet
control.
We can browse all the properties, methods, and built-in properties of the delphivcl.PageControl
using dir()
command:
1 2 3 |
import delphivcl dir(delphivcl.PageControl) |
See the responses in command prompt:
Here is the working example of the implementation of delphivcl.PageControl
:
1 2 3 4 5 |
# Page control creation pgConMain = PageControl(pnlMain) pgConMain.Name = "MyPageControl" pgConMain.Parent = pnlMain pgConMain.Align = "alClient" |
We will add and discuss the TabSheet
and how to show the tabs in our GUI in the next article.
Table of Contents
Note for beta release users
In practice, the only difference between DelphiVCL4Python release version and the beta version is only in how you write the DelphiVCL. Here is the example for how you import the library:
- Release version:
1 |
from delphivcl import * |
- Beta version:
1 |
from DelphiVCL import * |
Watch this comprehensive introduction to Python GUI Development with DelphiVCL library video by Jim McKeeth:
Also, watch the following webinar by Alexey Sharagin to Master the Secrets of Beautiful Modern Windows Apps:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.
Check out Python4Delphi which easily allows you to build Python GUIs for Windows using Delphi.
References & further readings
[1] Embarcadero DocWiki. (2016).
Vcl.ComCtrls.TPageControl
. Embarcadero DocWiki. Embarcadero Technologies. docwiki.embarcadero.com/Libraries/Sydney/en/Vcl.ComCtrls.TPageControl