![]() |
Desktop Development »
Miscellaneous »
Miscellaneous Controls
Intermediate
License: The Code Project Open License (CPOL)
Navigational history (go back/forward) for WinForms controlsBy OrlandoCuriosoA generic class and two ToolStripSplitButtons provide navigational history, like in web browsers. |
C#, Windows, .NET 2.0VS2005, Dev
|
|
Advanced Search |
|
|
|
||||||||||||||||

With controls that present large quantities of distinct items, providing a history of user's selections might enhance user pleasure. Especially, since (s)he would be accustomed to this feature from the web browser experience. This article presents a History<T> class, which is generic for the selected item, and works in conjunction with one or two ToolStripSplitButtons to provide the feature.
The class handles the functionality of the buttons, their appearance is not its responsibility. Updating the class with new selections is accomplished by assigning the current selection to the CurrentItem property inside an appropriate SelectionChanged event handler of the historized control. Internally, history is tracked by a generic LinkedList, with the selected items as LinkedListNodes. The ToolStripDropDownMenus are filled dynamically on their respective Opening events. If an exact history is feasible, the default filtering of duplicates can be turned off. No fancy coding to further mention it here.
With the provided comments, I hope that the usage would be self-explanatory:
public sealed class History<T> : IDisposable where T : class
{
// Occurs when user chose from menu or clicked button.
public event EventHandler<HistoryEventArgs<T>> GotoItem
// Represents the method which retrieves the menu text for an item.
// If delegate is null, item's ToString method is used.
public delegate string GetHistoryMenuText(T item)
// Represents the method which retrieves the menu image for an item.
// If delegate is null, none is used.
public delegate Image GetHistoryMenuImage(T item)
// forward button may be null
// limitList == 0 for unlimited history
public History(ToolStripSplitButton back,
ToolStripSplitButton forward, uint limitList)
// assign new selected item on every change
public T CurrentItem { get; set; }
public void Clear()
public bool AllowDuplicates { get; set; }
public string GetHistoryMenuText MenuTexts { set; }
public Image GetHistoryMenuImage MenuImages { set; }
}
// Provides data for the History<T>.GotoItem event
public class HistoryEventArgs<T> : EventArgs
{
public HistoryEventArgs(T item)
public T Item { get; }
}
The provided demo shows the most simplistic use with a ListBox. You might copy the ToolStripSplitButtons to your own project. Here is a slightly elaborated example for a TreeView, with support of menu images:
private TreeView treeView;
private ToolStripSplitButton tssbBack;
private ToolStripSplitButton tssbForward;
private History<TreeNode> history;
// in form's constructor or Load eventhandler
{
history = new History<TreeNode>(tssbBack, tssbForward, 8);
history.GotoItem += new
EventHandler<HistoryEventArgs<TreeNode>>(history_GotoItem);
// anonymous methods are cool
history.MenuTexts = delegate(TreeNode node) { return node.Text; };
history.MenuImages = delegate(TreeNode node) { return
treeView.ImageList != null && !string.IsNullOrEmpty(node.ImageKey)
? treeView.ImageList.Images[node.ImageKey] : null; };
}
private void treeView_AfterSelect(object sender, TreeViewEventArgs e)
{
history.CurrentItem = treeView.SelectedNode;
}
private void history_GotoItem(object sender,
HistoryEventArgs<TreeNode> e)
{
treeView.SelectedNode = e.Item;
}
protected override void Dispose(bool disposing)
{
if (disposing && history != null)
{
history.Dispose();
}
base.Dispose(disposing);
}
Last, but not the least, the item T could be a custom class, exposing additional properties, like an absolute address that allows reloading of items which are not contained anymore in the current view.
ToolStripControlHost control. | You must Sign In to use this message board. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 28 Mar 2008 Editor: Sean Ewington |
Copyright 2006 by OrlandoCurioso Everything else Copyright © CodeProject, 1999-2009 Web15 | Advertise on the Code Project |