Presentation is loading. Please wait.

Presentation is loading. Please wait.

McGraw-Hill © 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 2 User Interface Design.

Similar presentations


Presentation on theme: "McGraw-Hill © 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 2 User Interface Design."— Presentation transcript:

1 McGraw-Hill © 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 2 User Interface Design

2 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-2 Chapter Objectives - 1 Use text boxes, masked text boxes, rich text boxes, group boxes, check boxes, radio buttons, and picture boxes effectively Set the BorderStyle property to make controls appear flat or three-dimensional Select multiple controls and move, align, and set common properties for them

3 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-3 Chapter Objectives - 2 Make your projects easy for the user to understand and operate –Define access keys –Set Accept and Cancel buttons –Control the tab sequence, resetting the focus during program execution –Use ToolTips Clear the contents of text boxes and labels

4 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-4 Chapter Objectives - 3 Make a control visible or invisible at run time by setting its Visible property Disable and enable controls at design time and run time Change text color during program execution Concatenate (join) strings of text Download the Line and Shape controls, add them to the toolbox, and use the controls on forms

5 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-5 Introducing More Controls -1 Each class of controls has its own set of properties To see the properties for any class of control –Place a control on a form and examine the properties list –Click on a tool or a control and press F1 for context-sensitive Help View a list of properties and an explanation of use

6 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-6 Introducing More Controls - 2

7 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-7 Text Boxes Allows for user input –Cut, copy, and paste are available for use Text property –What is entered or displayed in the text box nameLabel.Text = nameTextBox.Text; –Literals can be assigned to a text box’s Text property messageTextBox.Text = “Watson, come here.”; TextAlign property –Determines alignment of text within the text box HorizontalAlignment.Left HorizontalAlignment.Right HorizontalAlignment.Center

8 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-8 Masked Text Boxes A specialized form of the Textbox control Specify the format (the Mask property) of user entered data –Example names dateMaskedTextBox phoneMaskedTextBox

9 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-9 Rich Text Boxes A rich text box allows specialized formatting –Character and paragraph formatting, similar to a word processor –Displays a URL as a link if DetectUrl property is set to true –Load formatted text into a rich text box from a.rtf file using the rich text box’s LoadFile method sampleRichTextBox.LoadFile(“Rich Text Boxes.rtf”);

10 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-10 Displaying Text on Multiple Lines By default, a value too long for a text box does not wrap to a second line Set two properties of a text box or rich text box to cause a long value to wrap 1.Set WordWrap to true 2.Set Multiline to true The text box height property must be set tall enough to display the lines

11 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-11 Group Boxes Container for other controls, such as radio buttons and check boxes Separates controls into logical groups Words in a group box Text property appear on the top edge of the box Change group box name only if referred to in code –In code, set Enable property to false to disable all controls inside the box

12 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-12 Check Boxes Allows the user to select or deselect an option In any group of check boxes, any number can be selected Checked property –checked = true –unchecked = false Write an event handler for the CheckedChanged event –Executes when the user clicks in the box Use the Text property of a check box for the text that appears next to the box

13 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-13 Radio Buttons Only one button of a group may be selected Radio buttons operate in groups –Create a group box and place a group of buttons inside –Any buttons directly on the form operate as one group Checked property –selected = true –unselected = false Write an event handler for the CheckedChanged event –Executes when the user selects a button Use the Text property of a radio button for the text that appears next to the button

14 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-14 Picture Boxes - 1 PictureBox control holds an image Set the Image property to a graphic file that has been added to the project's resources Graphic file extensions –.bmp,.gif,.jpg,.jpeg,.png,.ico,.emf,.wmf

15 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-15 Picture Boxes - 2 Place a PictureBox control on a form –Select its Image property in the Properties window –Click the Properties button Properties button

16 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-16 Pictures Boxes - 3 The Select Resource dialog box –Click the Import button to add an image to the list Click Import and navigate to image files

17 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-17 Picture Boxes – 4 (Properties) SizeMode –StretchImage resizes the graphic to fill the control Visible –Code to make a picture box invisible at run time: logoPictureBox.Visible = false; Image –If assigned at run time, refer to project name, Resources folder, and name of graphic resource samplePictureBox.Image = ChangePictures.Properties.Resources.Water_Lilies ; –Clearing a Picture Box Set Image property to null

18 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-18 Picture Boxes - 5 Adding and Removing Resources –Add, remove, and rename resources using the Visual Studio Project Designer Project/ ProjectName Properties Add a new resource to the project resources Remove a resource from the project resources Project Designer

19 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-19 Smart Tags Smart tags help set the most common properties of controls –Click arrow in upper-right corner of control –Shortcut displays a few properties

20 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-20 Using Images for Forms and Controls An image can be set as the background of a form or control –Set form’s BackgroundImage property to a graphic resource –Set form’s BackgroundImageLayout property to Tile, Center, Stretch, or Zoom –Buttons, check boxes and radio buttons Set control’s Image property to a graphic resource

21 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-21 Setting a Border and Style Most controls can appear to be three- dimensional or flat Labels, text boxes, and picture boxes have a BorderStyle property None FixedSingle Fixed3D Text boxes default to Fixed3D; Labels and picture boxes default to None

22 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-22 Drawing a Line Draw a line to create a logo or to divide the screen Use a Label control to draw a line –Properties AutoSize = false Text = blank BorderStyle = None BackColor = desired color for line Size - Width and Height = desired size Use the LineShape control to draw a line Use the Graphics methods to draw a line –Covered in Chapter 13

23 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-23 Working with Multiple Controls - 1 Select more than one control at a time –Move controls as a group –Set similar properties for the group –Align the controls

24 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-24 Working with Multiple Controls - 2 Selecting Multiple Controls –Drag a selection box around the controls –Click on a control, hold down the Ctrl or Shift key and click more controls –Ctrl-click (or Shift-click) a control to deselect, without changing rest of group –Edit/Select All Keyboard shortcut: Ctrl + A

25 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-25 Working with Multiple Controls - 3 Deselect a group of controls by clicking on the form (not on a control) Move controls as a group –Drag entire group to a new location Set properties for groups of controls –Property window displays shared properties, all properties in group can be changed at once

26 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-26 Working with Multiple Controls - 4 Aligning controls –Use the Format menu or Layout toolbar to Make controls equal size (width, height, both) Align controls (tops, bottoms, centers) Create equal spacing between controls (horizontal and/or vertical)

27 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-27 Designing Applications for User Convenience Create programs that are easy to use –Interface clear and consistent –Programs look and behave like other Windows programs Controls operate in standard way Keyboard access keys Accept button Correct tab function Define ToolTips

28 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-28 Designing the User Interface Follow industry standards for color, size, and placement of controls –Use a neutral color such as gray for the form, which looks professional By default the BackColor property of forms and controls is set to Control –White background for controls requiring user input –Gray background for controls that the user cannot change –Group controls to aid user Create group boxes to hold related items –Use sans serif fonts; not boldface or large

29 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-29 Defining Keyboard Access Keys Many people prefer to use the keyboard rather than a mouse Also called hot keys User presses Alt + underlined letter Defined by adding an ampersand to Text property of control &OK = OK E&xit = Exit Use Windows standard keys Do not give two controls the same access key Keyboard access keys

30 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-30 Setting the Accept and Cancel Buttons Accept button –Set the form's AcceptButton property –Identified visually on the form by a thicker border –Responds to the Enter key Cancel button –Responds to the Esc key –Set the form's CancelButton property

31 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-31 Setting the Tab Order for Controls One control on a form always has the focus or active control Not all controls can receive the focus –Focus Text boxes, buttons, check boxes, radio buttons –No focus Labels, picture boxes

32 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-32 The Tab Order - 1 Controls capable of receiving focus have a TabStop property –True by default –Set to false to not have focus stop on a control when the user presses the Tab key TabIndex property determines the order the focus moves as the Tab key is pressed

33 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-33 The Tab Order - 2 Set the TabIndex for a text box to one higher than its label –Press the access key for the label, focus goes to the first control following the label (labels do not receive focus)

34 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-34 The Tab Order - 3 TabIndex properties for controls are assigned in sequence beginning with zero as controls are created on a form When a form loads, the control with the lowest TabIndex receives the focus Use a control's keyboard access key to transfer focus to that control Radio buttons behave differently –Tab to the group and use Up and Down arrow keys to select correct button

35 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-35 Setting the Tab Order Set each control’s TabIndex property in the Properties window Set TabIndexes automatically –Design window active –View/Tab Order or click Tab Order button on Layout toolbar –Small numbers appear in upper-left corner of each control –Click on each control, in Tab order –Press Esc key when all boxes change to blue

36 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-36 Setting the Form’s Location on the Screen Set the form's screen position by setting the StartPosition property To center a form on the user's screen set the Start Position property to CenterScreen

37 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-37 Creating Tool Tips - 1 ToolTips are small popup labels that appear when the mouse pointer is paused over a control Add a ToolTip component to a form –The form and each control have a new property ToolTip on toolTip1 The ToolTip control appears in the component tray at the bottom of the Form Designer Set the ToolTip on toolTip1 property to the text that will appear when the user pauses the mouse pointer over the control.

38 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-38 Creating Tool Tips - 2 Set properties of the ToolTip component to modify a ToolTip’s appearance –Select ToolTip component in component tray –Change properties BackColor, ForeColor, IsBalloon, ToolTipIcon Properties apply to all ToolTips with that component Create multiple ToolTip components to have a variety of ToolTip appearances

39 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-39 Coding for the Controls Clear out contents of text boxes and labels Reset the focus (the active control) Change the color of text Change the text in a ToolTip

40 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-40 Clearing Text Boxes and Labels Set the Text property of a Text Box or a Label to an empty string –Two quotes with no space between: " " –string.Empty A Text box (not a Label) can use the Clear method –dataTextBox.Clear();

41 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-41 Resetting the Focus In code reset the focus to the control that should receive the input –Places the insertion point in a text box –Makes the control the active control –Cannot set focus to a disabled control Use the Focus method of any control that can receive the focus //Make the insertion point appear in this text box. nameTextBox.Focus();

42 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-42 Setting the Checked Property of Radio Buttons and Check Boxes Select or deselect radio buttons and check boxes at design time or at run time Checked property –Selected = true –Deselected = false In a group of radio buttons, setting one button to true sets all others to false –Only one radio button in a group can be selected at one time //Make button selected. redRadioButton.Checked = true; //Make box checked. displayCheckBox.Checked = true; //Make box unchecked. displayCheckBox.Checked = false;

43 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-43 Set the visibility of a control at run time Make visibility of a control depend on selection of a radio button or check box Setting Visibility at Run Time //Make label invisible. messageLabel.Visible = false; //Make the visibility of the label match the setting in the check box. messageLabel.Visible = displayCheckBox.Checked;

44 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-44 Disabling Controls Enabled property determines whether a control is available or grayed out (disabled) –Default setting is true Enabled property of a control can be set at design time or in code at run time –displayButton.Enabled = true; Usually best to disable rather than hide controls

45 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-45 Setting Properties Based on User Actions Change Enabled or Visible property of a control based on a user action Example: User signs in and clicks the signInButton private void signInButton_Click(object sender, EventArgs e) { // Set visibility and enable controls. welcomeRichTextBox.Visible = true; clothingRadioButton.Enabled = true; equipmentRadioButton.Enabled = true; juiceBarRadioButton.Enabled = true; membershipRadioButton.Enabled = true; personalTrainingRadioButton.Enabled = true; }

46 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-46 Changing the Color of Text Most controls have ForeColor and BackColor properties –ForeColor = Color of text –BackColor = Color around text The Color Constants –Color constants in Color class specify a color Type "Color." in the editor to see a full list of colors nameTextBox.ForeColor = Color.Red; messageLabel.ForeColor = Color.White;

47 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-47 Concatenating Text Concatenating joins text strings –"Tack" one string on the end of another –i.e. join a literal and a property Use a plus sign (+) between the two strings Concatenate a New Line character to set up multiple lines –Environment.NewLine messageLabel.Text = "Your name is: " + nameTextBox.Text; nameAndAddressLabel.Text = nameTextBox.Text + " " + address TextBox.Text; welcomeRichTextBox.Text = "Welcome Member #" + memberIDMaskedTextBox.Text + Environment.NewLine + nameTextBox.Text;

48 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-48 Downloading and Using the Line and Shape Controls Download and install free Microsoft PowerPacks –Msdn2.microsoft.com/en-us/vbasic/bb735936.aspx Professional Edition –New Section - Visual Basic Power Packs 3.0 at bottom of toolbox Express Edition –Manually add controls to toolbox Right-click in toolbox, select Add Tab Type “Visual Basic Power Packs 3.0” as Tab name Right-click new tab, select Choose Items Select LineShape, OvalShape, RectangleShape, PrintForm Click OK

49 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-49 Place the Controls on a Form Click the tool in the toolbox Use mouse pointer to draw shape desired on form –Double-click tool to create default size control Can be moved or resized Line and Shape controls have properties and events –Line BorderStyle, BorderWidth, BorderColor, endpoints –Shape BackStyle, BorderColor, BorderStyle, BorderWidth, FillColor, FillGradientColor, FillGradientStyle, FillStyle, CornerRadius

50 McGraw-Hill© 2010 The McGraw-Hill Companies, Inc. All rights reserved. 2-50 Printing a Form Add PrintForm component to form Add Print button to form Use PrintForm’s Print method to send form to printer Use PrintForm’s PrintAction property to send form to the Print Preview window //Print the form on the printer. printForm1.Print(); //Print to the Print Preview window. printForm1.PrintAction = System.Drawing.Printing.PrintAction.PrintToPreview; printForm1.Print();


Download ppt "McGraw-Hill © 2010 The McGraw-Hill Companies, Inc. All rights reserved. Chapter 2 User Interface Design."

Similar presentations


Ads by Google