- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
Advanced Windows Forms Controls in .NET framework
3 QR Generator In .NET Framework Using Barcode generator for ASP.NET Control to generate, create QR Code ISO/IEC18004 image in ASP.NET applications. www.OnBarcode.comBarcode Maker In .NET Using Barcode generator for ASP.NET Control to generate, create bar code image in ASP.NET applications. www.OnBarcode.comAdvanced Windows Forms Controls
QR Code ISO/IEC18004 Maker In Visual C#.NET Using Barcode generation for .NET framework Control to generate, create QR Code ISO/IEC18004 image in .NET framework applications. www.OnBarcode.comDenso QR Bar Code Maker In .NET Using Barcode generator for VS .NET Control to generate, create QR Code 2d barcode image in Visual Studio .NET applications. www.OnBarcode.com3. Which of the following is NOT a valid setting for the View property of the ListView control A. LargeIcon B. Details C. Tree D. SmallIcon QR Code JIS X 0510 Creator In Visual Basic .NET Using Barcode printer for VS .NET Control to generate, create QR-Code image in Visual Studio .NET applications. www.OnBarcode.comLinear Barcode Generator In .NET Framework Using Barcode creation for ASP.NET Control to generate, create 1D image in ASP.NET applications. www.OnBarcode.comLesson 2: Creating and Configuring Value-Setting, Date-Setting, and Image-Display Controls
UCC - 12 Encoder In .NET Using Barcode drawer for ASP.NET Control to generate, create UCC - 12 image in ASP.NET applications. www.OnBarcode.comBar Code Drawer In VS .NET Using Barcode creator for ASP.NET Control to generate, create barcode image in ASP.NET applications. www.OnBarcode.comLesson 2: Creating and Configuring Value-Setting, DateSetting, and Image-Display Controls
Make PDF417 In .NET Framework Using Barcode creation for ASP.NET Control to generate, create PDF 417 image in ASP.NET applications. www.OnBarcode.comData Matrix 2d Barcode Generation In Visual Studio .NET Using Barcode creation for ASP.NET Control to generate, create DataMatrix image in ASP.NET applications. www.OnBarcode.comAllowing users to select or choose from a set of options, set dates, and work with images are common scenarios for user interface design. In this lesson, you will learn to use value-setting controls such as CheckBox, RadioButton, and TrackBar and date-set ting controls such as DateTimePicker and MonthCalendar; and you will learn to work with images using the ImageList component and the PictureBox control. Code-128 Creation In VS .NET Using Barcode creator for ASP.NET Control to generate, create Code 128C image in ASP.NET applications. www.OnBarcode.comMake USPS Confirm Service Barcode In .NET Framework Using Barcode generation for ASP.NET Control to generate, create USPS PLANET Barcode image in ASP.NET applications. www.OnBarcode.comAfter this lesson, you will be able to: Bar Code Encoder In Objective-C Using Barcode generator for iPhone Control to generate, create barcode image in iPhone applications. www.OnBarcode.comEAN128 Encoder In .NET Using Barcode creation for Reporting Service Control to generate, create UCC - 12 image in Reporting Service applications. www.OnBarcode.comSet two or more mutually exclusive options in the user interface using a RadioButton. Use the CheckBox control to indicate whether a condition is on or off. Allow navigation through a large amount of information or visually adjust a numeric setting using a TrackBar. Allow the user to select a single item from a list of dates or times using the DateTimePicker control. Present an intuitive graphical interface for users to view and set date information using the MonthCalendar. Add images to or remove images from the ImageList component. Display graphics using the PictureBox control. Recognize UCC - 12 In Visual Basic .NET Using Barcode scanner for .NET framework Control to read, scan read, scan image in .NET framework applications. www.OnBarcode.comBarcode Creation In None Using Barcode creator for Excel Control to generate, create bar code image in Microsoft Excel applications. www.OnBarcode.comEstimated lesson time: 45 minutes
PDF-417 2d Barcode Printer In None Using Barcode printer for Microsoft Excel Control to generate, create PDF417 image in Excel applications. www.OnBarcode.comGS1 - 13 Creation In .NET Framework Using Barcode generator for .NET Control to generate, create EAN13 image in .NET framework applications. www.OnBarcode.comValue-Setting Controls
EAN-13 Supplement 5 Printer In Java Using Barcode drawer for Java Control to generate, create UPC - 13 image in Java applications. www.OnBarcode.comEAN / UCC - 13 Creator In Objective-C Using Barcode printer for iPhone Control to generate, create GS1 128 image in iPhone applications. www.OnBarcode.comValue-setting controls allow the user to set values or pick options from a preset list in the user interface. The CheckBox control allows a user to select or deselect particular options in a non-exclusive manner, while the RadioButton allows you to present a range of options to the user, only one of which can be selected. The TrackBar control allows the user to rapidly set a value in a graphical interface. The CheckBox Control
The CheckBox control is a very familiar control to users. It allows the user to mark a check box next to a label to indicate acceptance or rejection of the option presented. CheckBox controls function in a non-exclusive manner you can have multiple CheckBox controls on a single form, and any combination of them can be checked or unchecked at a single time. Table 3-10 shows important properties of the CheckBox control. 3
Advanced Windows Forms Controls
Table 3-10 Important Properties of the CheckBox Control
Property AutoCheck Checked CheckState Text ThreeState
Description Determines whether the CheckBox is automatically checked when the text is clicked. Gets or sets whether the CheckBox is checked. Returns the CheckState of the control. Possible values for this property are Checked, Unchecked, and Indeterminate. The text displayed next to the check box. Determines whether the CheckBox control allows two check states or three. The most common usage for the CheckBox control is to allow the user to make a binary decision about an option by either checking the box or not checking it. Typi cally, the check box is used for non-exclusive options; that is, checking a particular check box usually does not affect the state of other text boxes. Figure 3-7 shows an example of a hypothetical pizza order form. Radio buttons are used to choose between the exclusive options Pizza or Calzone, and CheckBox controls are used to select toppings for the pizza or calzone that is selected. Figure 3-7 Example of CheckBox and RadioButton controls
You can programmatically determine if a CheckBox control is checked by accessing the Checked property. This property will return True if the control is checked and False if the control is unchecked or indeterminate. A less common use for the CheckBox is to allow the user to choose between three set tings: Checked, Unchecked, or Indeterminate. This can be useful to indicate to the user that a conscious decision must be made for each option rather than simply setting a default option. You enable three-state CheckBox controls by setting the ThreeState Lesson 2: Creating and Configuring Value-Setting, Date-Setting, and Image-Display Controls
property to True. This allows the user to cycle through the three states, rather than just the two, for the check box. You can determine the state of the check box by accessing the CheckState property. Note that you can set the CheckState property to Indeterminate at design time even if you set the ThreeState property to False. This causes the CheckBox controls to start in the indeterminate state, but once the user makes a selection, they must be either checked or unchecked; in this case, the user is not allowed to reset the check box to indeterminate.
|
|