session 3 bai 3 ve winform

18
Session 3 Trình bày : Võ Ngọc Đạt Email : [email protected] Điện thoại : 0934.969.680 Slide 1 of 38 05/28/22 Advanced Controls

Upload: mrtom16071980

Post on 13-Jun-2015

252 views

Category:

Technology


2 download

TRANSCRIPT

Page 1: Session 3 Bai 3 ve winform

Session 3

Trình bày : Võ Ngọc ĐạtEmail : [email protected]Điện thoại : 0934.969.680

Slide 1 of 38

04/13/23

Advanced Controls

Page 2: Session 3 Bai 3 ve winform

Slide 2 of 26

04/13/23

Module IntroductionThe Selection list controls that are used for selecting a value from a list.

The ListView control displays a collection of items within a collection.

The TreeView control displays the data in a hierarchical manner.

The RichTextBox control allows displaying, entering, and manipulating text within the control.

The ProgressBar control is used in applications

Page 3: Session 3 Bai 3 ve winform

Slide 3 of 38

04/13/23

Selection List Controls Selection list controls are controls used for selecting a value from a specified range of values. These controls allow you to select values from a range using the up and down arrows. There are two types of selection list controls namely :+ NumericUpDown

+ DomainUpDown.

Page 4: Session 3 Bai 3 ve winform

Slide 4 of 38

04/13/23

"NumericUpDown" ControlThe NumericUpDown control is a selection list control that allows you to select numeric values from a range of values.

Page 5: Session 3 Bai 3 ve winform

Slide 5 of 38

04/13/23Property Description

Increment Specifies or retrieves the value by which the current value in the control will be incremented or decremented when up or down button is clicked.

Maximum Specifies or retrieves the maximum value that the control can have in a particular range.

Minimum Specifies or retrieves the minimum value that the control can have in a particular range.

ThousandsSeparator Specifies or retrieves a value indicating whether a thousands separator is displayed in the up-down control.

Value Specifies or retrieves the value assigned to the control.

Method Description

DownButton Decreases the value of the up-down control.

UpButton Increases the value of the up-down control.

Event Description

ValueChanged Occurs when the Value property of the control has been changed.

Page 6: Session 3 Bai 3 ve winform

Slide 6 of 38

04/13/23

"DomainUpDown" Control The DomainUpDown control is a selection list control that allows you to select text values from a range of values. This control is generally used when the range of values indicates an order such as days of a week and months of the year.

Page 7: Session 3 Bai 3 ve winform

Slide 7 of 38

04/13/23Property Description

Items Assigns a collection of objects to the control.

MaximumSize Specifies or retrieves the maximum size of the up and down arrows.

MinimumSize Specifies or retrieves the minimum size of the up and down arrows.

Readonly Specifies or retrieves a value indicating whether the text in the control can be modified using the up and down buttons.

SelectedItem Specifies or retrieves the selected item using the index value of the selected item in the collection.

Method Description

DownButton Displays the next item present in the object collection.

UpButton Displays the previous item present in the object collection.

Event Description

Selectedltemchanged Occurs when the value of the Selectedltem property has been changed.

Page 8: Session 3 Bai 3 ve winform

Slide 8 of 38

04/13/23

"ListView" Control The ListView control is used to display a collection of items in a list. This control allows you to add items to a collection and displays the items along with their icons, which can be small or large in size.

There are five main views of ListView control,which are listed as follows: + Tile + List + Details + SmallIcon + LargeIcon

Page 9: Session 3 Bai 3 ve winform

Slide 9 of 38

04/13/23

Property Description

Columns Retrieves the collection of all column headers that are displayed in the control.

Items Retrieves a collection that contains all items in the control.

MultiSelect Specifies or retrieves a value that indicates whether multiple items can be selected.

SelectedItems Retrieves the items that are selected in the control.

View Specifies or retrieves how items are displayed in the control. The value of this property can be set using the different types of views defined in the View enumeration. The different types of views are Tile, List, Details, Smalllcon and Largelcon.

Method Description

Arrangelcons Arranges icons in the control when they are displayedas icons.

Clear Removes all items and columns from the control.

GetItemAt Retrieves the item at a specified location.

Sort Sorts the list view items.

Event Description

ColumnClick Occurs when the column header within the list view control is clicked.

Itemcheck Occurs when the check state of an item is modified.

ItemSelectionChanged Occurs when the selection state of an item is changed.

SelectedIndexChanged Occurs when the index of the selected item in the list view control is modified.

Page 10: Session 3 Bai 3 ve winform

Slide 10 of 38

04/13/23

Page 11: Session 3 Bai 3 ve winform

Slide 11 of 38

04/13/23

"TreeView" Control The TreeView control displays data in a hierarchical manner. This control is similar to the left pane of the Windows Explorer. The TreeView control has three types of nodes. These are:

+ Root

+ Parent

+ Leaf

Page 12: Session 3 Bai 3 ve winform

Slide 12 of 38

04/13/23

Property Description

Nodes Retrieves a set of TreeNode objects that represents theroot nodes of th e control.

SelectedNode Specifies or retrieves the tree node that is currently selected in the control.

ShowPlusMinus Specifies or retrieves a value, which indicates whether a plus sign (+) and minus sign (-) buttons are displayed next to tree nodes, which contain child tree nodes.

ShowRootLines Specifies or retrieves a value, which indicates whetherlines are drawn between the tree nodes that are located at the root of the tree view.

TopNode Retrieves the first tree node, which is completely visible in the control.

Method Description

GetNodeAt Retrieves the tree node at the specified location.

GetNodeCount Retrieves the number of tree nodes, optionally including nodes in the subtrees.

Event Description

AfterCollapse Occurs after the tree node is collapsed.

AfterExpand Occurs after the tree node within the control is expanded.

AfterSelecc Occurs after the tree node is selected.

NodeMouseClick Occurs when the user clicks a TreeNode with the mouse.

Page 13: Session 3 Bai 3 ve winform

Slide 13 of 38

04/13/23

Page 14: Session 3 Bai 3 ve winform

Slide 14 of 38

04/13/23

"RichTextBox" Control The RichTextBox control is used for displaying, entering, and manipulating text data. The control is similar to the WordPad application, as it allows text formatting such as making the text bold, applying bullets and links, and changing the font of the text. The control also loads text and embedded images from a file, provides undo and redo editing operations, and allows you to find specified characters.

The RichTextBox control, by default, displays both horizontal and vertical scrollbars. The text in the RichTextBox control can either be accessed in text format or in rich text format (.rtf).

Page 15: Session 3 Bai 3 ve winform

Slide 15 of 38

04/13/23Property Description

Font Specifies or retrieves the font of the text displayed in the control.

ScrollBars Specifies or retrieves the type of scroll bars for the control.

SelectedText Specifies or retrieves the selected text in the control.

SelectionFont Specifies or retrieves the font of the selected text or at the insertion point.

SelectionLength Specifies or retrieves the number of characters selected in the control.

Text Specifies or retrieves the text in the control.

wordwrap Determines whether the control automatically wraps the words towards the beginning of the next line whenever necessary.

Method Description

AppendText Adds text to the current text of a RichTextBox control.

Copy Copies the selected text from the control to the clipboard.

Paste Pastes the contents of the clipboard into the control.

Redo Performs the last operation again that was undone in the control.

Undo Undoes the last edit operation.

SelectAll Selects all text in the control.

Event Description

HScroll Occurs when the user clicks the horizontal scroll bar of the control.

VScroll Occurs when the user clicks the vertical scroll bar of the control.

Page 16: Session 3 Bai 3 ve winform

Slide 16 of 38

04/13/23

Page 17: Session 3 Bai 3 ve winform

Slide 17 of 38

04/13/23

Page 18: Session 3 Bai 3 ve winform

Slide 18 of 18

04/13/23

"ProgressBar" Control The ProgressBar control is a window that can be used to indicate the progress of an operation in an application.

This gives you an idea about how long it will take for the process to get complete.

The ProgressBar control can be implemented with or without using visual styles.