Свойство | Тип | Описание | |
---|---|---|---|
FindAndSelectNodeStartingWith | bool | ||
FindNode | |||
HandleTreeItemSelect | void | ||
InitializeComponent | void | ||
OnHide | void | ||
RemoveFilter | void | ||
m_treeView_AfterSelect | void | ||
m_treeView_BeforeSelect | void | ||
m_treeView_KeyDown | void | ||
m_treeView_MouseDown | void | ||
m_treeView_MouseUp | void |
Метод | Описание | |
---|---|---|
BeginUpdate ( ) : void |
Begin update on the tree...when you want to add multiple nodes.
|
|
CheckDisposed ( ) : void |
Check to see if the object has been disposed. All public Properties and Methods should call this before doing anything else.
|
|
EnableAfterAndBeforeSelectHandling ( bool enable ) : void |
Enables or disables the handlers for the AfterSelect and BeforeSelect events
|
|
EndUpdate ( ) : void |
End update started with BeginUpdate.
|
|
HideForm ( ) : void |
Hide the window that shows the popup tree (and activate the parent window, if known).
|
|
HideForm ( bool activateParent ) : void |
Hide the window that shows the popup tree (and activate the parent window, if requested).
|
|
Launch ( |
Launch the PopupTree. Typical usage, where 'this' is a control that the list should appear below: m_listBox.Launch(Parent.RectangleToScreen(Bounds), Screen.GetWorkingArea(this)); Or, where rect is a rectangle in the client area of control 'this': m_listBox.Launch(RectangleToScreen(rect), Screen.GetWorkingArea(this); (Be sure to set the height and width of the PopupTree first.)
|
|
PopupTree ( ) : System |
|
|
SelectNodeStartingWith ( string start ) : void |
Cycle the selection to the next node that begins with the specified text. (Case insensitive.)
|
|
SelectObj ( int hvo ) : void |
Find the node for the specified Hvo and select it. Note that this DOES trigger the AfterSelect event. Enhance JohnT: currently, if the hvo isn't found, it still fires off the AfterSelect event. - should we (will it work?) set m_treeView.SelectedNode to null so nothing is selected? - if it's an exception not to find the node, do we need a mechanism...maybe passing zero?... to explicitly set it to 'nothing selected' (if that's possible). None of that is needed yet, so we haven't worried about it.
|
|
SelectObjWithoutTriggeringBeforeAfterSelects ( int hvo ) : void |
Find the node for the specified Hvo and select it. Note that this does NOT trigger the BeforeSelect or AfterSelect events.
|
Метод | Описание | |
---|---|---|
Dispose ( bool disposing ) : void |
Clean up any resources being used.
|
|
OnActivated ( |
JohnT: I don't know why we need this, but for some obscure reason, after everything else happens and we are hidden, we get activated again. Then the main window is not active, and can't get keyboard events. AArgh! This is a horrible kludge but the best I can find.
|
|
OnVisibleChanged ( |
Make sure we clean out the message filter if not already done.
|
Метод | Описание | |
---|---|---|
FindAndSelectNodeStartingWith ( int iStarting, int iEnding, string startKey ) : bool |
Select the node whose text starts with the given startKey string (if node exists).
|
|
FindNode ( |
Assuming a node collection containing HvoTreeNodes, return the one whose HVO is the specified one. Null if not found.
|
|
HandleTreeItemSelect ( ) : void | ||
InitializeComponent ( ) : void |
Required method for Designer support - do not modify the contents of this method with the code editor.
|
|
OnHide ( ) : void | ||
RemoveFilter ( ) : void | ||
m_treeView_AfterSelect ( object sender, |
||
m_treeView_BeforeSelect ( object sender, System.Windows.Forms.TreeViewCancelEventArgs e ) : void |
pass on the event to clients.
|
|
m_treeView_KeyDown ( object sender, |
||
m_treeView_MouseDown ( object sender, MouseEventArgs e ) : void |
Handle a MouseDown event, recording the selected node if it seems likely that the TreeView Select operation will ignore it.
|
|
m_treeView_MouseUp ( object sender, MouseEventArgs e ) : void |
Handle a MouseUp event, selecting the node recorded earlier for MouseDown if it is the same node in the TreeView control.
|
protected Dispose ( bool disposing ) : void | ||
disposing | bool | |
Результат | void |
public EnableAfterAndBeforeSelectHandling ( bool enable ) : void | ||
enable | bool | |
Результат | void |
public HideForm ( bool activateParent ) : void | ||
activateParent | bool | |
Результат | void |
public Launch ( |
||
launcherBounds | A rectangle in 'screen' coordinates indicating where to display the list. Typically, as shown /// above, the location of something the user clicked to make the list display. It's significance is that /// the tree will usually be shown with its top left just to the right of the bottom left of the rectangle, and /// (if the tree width has not already been set explicitly) its width will match the rectangle. If there is not /// room to display the tree below this rectangle, it will be displayed above instead. | |
screenBounds | A rectangle in 'screen' coordinates indicating the location of the actual screen /// that the tree is to appear on. | |
Результат | void |
protected OnActivated ( |
||
e | ||
Результат | void |
protected OnVisibleChanged ( |
||
e | ||
Результат | void |
public SelectNodeStartingWith ( string start ) : void | ||
start | string | the search key |
Результат | void |
public SelectObjWithoutTriggeringBeforeAfterSelects ( int hvo ) : void | ||
hvo | int | |
Результат | void |