TreeViewItem
Last updated
Last updated
TreeViewItem is a selectable control used in the TreeView. TreeViewItem instances can be manually instantiated just like any control, or may be instantiated internally by the TreeView control.
The TreeViewItem requires:
An object named **InnerPanelInstance **of any type (typically a Container)
Typically the InnerPanelInstance has the following characteristics:
Height units depending on children
Stacks children vertically
TreeViewItem controls can optionally include:
An object named ToggleButtonInstance which implements the Toggle behavior
An object named ListBoxItemInstance which implements the ListBoxItem behavior
If available, the ListBoxItemInstance is used to display selection, hover, and the backing data. If available, the ToggleButtonInstance is used to display whether the tree view item is expanded, and to allow the user to expand/collapse the TreeViewItem.
By default FlatRedBall.Forms will have a standard implementation for a TreeViewItem (this is added to Gum projects through the Gum plugin in Glue). FlatRedBall.Forms provides a number of ways to customize TreeViewItems.
Of course, the easiest way to customize TreeViewItems is to open the Gum project and modify the existing TreeViewItem, which is located in the DefaultForms folder.
The standard TreeViewItem implementation includes all of the necessary components and characteristics to be used in FlatRedBall.Forms.
Game projects can contain custom TreeViewItems, and can even contain different types of TreeViewItems for use in different situations. As shown above, custom TreeViewItems only need an InnerPanelInstance, but can include a toggle button to control collapsing/expanding and a ListBoxItemInstance for selection. For example, the following Component called QuestCategory is used to contain related quests.
The Gum plugin will attempt to generate code for this type, but you can force the association between your custom type and the TreeViewItem in code. For example, the following code associates the QuestCategory control with the TreeViewItem forms control: Once a new TreeViewItem control has been created it can be used in code in a number of ways (see the next section).
The TreeViewItem added to a TreeView or added as a child of an existing TreeViewItem can be specified in a project-wide or very specific way.
The most direct way to add a TreeViewItem to a TreeView or as a child of an existing TreeViewItem is to construct it and add it directly, as shown in the following code:
The previous section shows how to add a TreeViewItem directly to a TreeView or another TreeView Item. If an object which is not a TreeViewItem is added to the Items list, the TreeView or TreeViewItem will attempt to construct a TreeViewItem internally. The order for determining which type of Gum object to construct is as follows:
Does the TreeView or TreeViewItem have its TreeViewItemGumType property set? If so, use that type.
Does the FrameworkElement.DefaultFormsComponents contain an entry for TreeViewItem? If so, use that type.
If none of the conditions above are true, and the TreeViewItem is being added as a child of another TreeViewItem, use the parent's type.
By default the visual will displayed by a FlatRedBall.Forms.Controls.TreeViewItem instance. This can be changed by setting the TreeView or parent TreeViewItem's TreeViewItemFormsType.