From the course: Rapid Application Development with Python

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

The application skeleton

The application skeleton - Python Tutorial

From the course: Rapid Application Development with Python

Start my 1-month free trial

The application skeleton

- We don't need to configure the spacer. So the next thing to check is the sizer, and sets its proportion to zero. I'll check the remaining two sizers as well. We're going to use the input field for audit summary information. We'll change the name to tc_sysinfo. And we'll make it size 400,200. I'll select the Widgets tab, and check wx TE_Multiline. We use this to allow for line break characters in the field, in case these have been used in the spreadsheet. I'll also check wx TE_Wordwrap, to make sure we break lines at word boundaries. We now have four buttons to configure. Let's look at the first. We'll change its name to b_add, and make it size 60,20. In Layout, we'll set the proportion to zero and the border to four. In the Widgets tab, we'll change it's label to Add. Similarly, with the second button, which we'll call b_del, and we'll label it Delete. And the third button, b_open. Call it Open. And the fourth…

Contents