|
Free
computer Tutorials
|
![]() |
home |
Stay
at Home and Learn
|
||||||
Properties |
|||||||
|
An Introduction to VB .NET Properties
I'm sure you've noticed the area to the right of the design environment, the area with all the textboxes in a grid, the one that has those daunting names like "AccessibleDescription", "AccessibleName", "AccessibleRole". That's the Properties box. Click anywhere on the form that is not a label or a textbox, somewhere on the form's grey areas. The form should have the little sizing handles now, indicating that the form is selected. On the right of the design environment there should be the following Properties box:
If your Properties box says "Textbox1 Textbox" or "Label1 Label" then you haven't yet selected the Form. Click away from the textbox or label until the Properties box reads "Form1 Form" What you are looking at is a list of the properties that a form has: Name, , BackColor, Font, Image, Text, etc. Just to the right of these properties are the values for them. These values are the default values, and can be changed. We're going to change the value of the Text property. First, you might want to display the list of Properties in a more accessible form. You can display the list properties alphabetically. To do that, click the Alphabetic icon at the top of the Properties box, as in the image below:
This will make the properties easier to find. Before we change any in the Properties box, let's clear up what we mean by "Property".
No more reading these lessons online - get the eBook here!
What is a Property?Those controls you added to the form (textboxes and labels), and the form itself, are called control objects. You can think of controls as things, something solid that you can pick up and move about. Controls (things) have properties. If your television were a control, it too would have properties: an On/Off button property, a colour property, a volume property, and a ... well, what other properties would your television have? Think about it. The properties of your television will have values. The On/Off button would have just two values - On or Off. The volume property could have a range of values, from zero to ten, for example. If the value of the volume property was set to ten, the loudest value, then you'd probably have some very angry neighbours! In VB.NET, you can change a property of a control from the Properties Box. (You can also change a property using code, which you'll do quite a lot.) If we go back to our Form object, and the properties and values it has, we can see how to change them using the Properties Box. We'll change only one of these values for now - the value of the Text property . So, do this:
"Text" is a Property of Form1. Don't be confused
by the word "Form1" next to the word "Text". All
this means is that the current value of the Text property is set to
the word "Form1". This is the default.
When you've correctly changed the Text property, the top of your Form will then look like this one:
As you can see, your new text has gone at the top of the form, in white on the blue background. So the Text Property of a form is for setting the caption you want
to display in the title bar at the top. In the next part, we'll take a look at how to change the text property of labels and textboxes.
<-- Back One Page Move on to the Next Part --> <--Back to the .NET Contents Page View all our Home Study Computer Courses
|