up vote 2 down vote favorite
share [g+] share [fb]

I have changed the Treeview.HideSelection = false; But how do I insure that when focus is lost that the selected item remains the original selected color?

EDIT:

I have a listview on a form that holds a list of process events. Alongside the Treeview on the same form is a series of selections that the user completes to classify the event in the listview. However, when the user makes a selection on one of the classification controls the blue highlighted selected Treeview item turns to a grey color. I was hoping to find the property that defines this color to make it the same color blue.

Any suggestions.

Update:

 public partial class myTreeView : TreeView
{
    TreeNode tn = null;
    public myTreeView()
    {
        InitializeComponent();
    }

    protected override void OnAfterSelect(TreeViewEventArgs e)
    {
        if (tn != null)
        {
            tn.BackColor = this.BackColor;
            tn.ForeColor = this.ForeColor;
        }
        tn = e.Node;
        base.OnAfterSelect(e);
    }
    protected override void OnBeforeSelect(TreeViewCancelEventArgs e)
    {

        e.Node.BackColor = Color.Green;
        e.Node.ForeColor = Color.White;
        base.OnBeforeSelect(e);
    }
    protected override void OnGotFocus(System.EventArgs e)
    {

        base.OnGotFocus(e);
    }

    protected override void OnLostFocus(System.EventArgs e)
    {

        if (tn != null)
        {
            tn.BackColor = Color.Green;
            tn.ForeColor = Color.White;
        }
        // tn.BackColor = Color.Red;

        base.OnLostFocus(e);
    }
}
link|improve this question

Are you talking about focus to the entire app, or just that specific field? Also, should the item remain selected, or should it de-select itself? – Dan Herbert Jan 19 '09 at 0:15
I suspect you're trying to solve some other problem, and messing with the selection color is your idea of how to solve it. I think that's a bad idea. Ask about your original problem instead. There's surely a better solution. – Rob Kennedy Jan 19 '09 at 2:12
feedback

3 Answers

up vote 3 down vote accepted

Setting ListView.HideSelection to true means that when focus is lost, it will hide the selection. By setting HideSelection to false, the selected item will still have the color indicator showing which item is selected.

link|improve this answer
thanks, typo on my part – Brad Jan 19 '09 at 12:08
feedback

Generally, you don't. The change in color is one of the visual cues that indicate which control has the focus. Don't confuse your customers by getting rid of that.

If you want to buck the convention, then you can make your control owner-drawn, and then you can paint the items whatever color you want.

Another option, in your case, is to use a drop-down combo box instead of a list box. Then the current selection is always clear, no matter whether the control has the focus. Or, you could consider using a grid, where each event has all its settings given separately, and then "selection" doesn't matter at all.

link|improve this answer
feedback

If I were doing it, I would simply have an extra Label alongside the ListView, above the classification controls being selected, that would indicate which process event has been selected. You can also use said Label to add extra details about the event (if any).

This way, you are sticking to standard UI conventions and making it that much clearer to the user what their current selection is.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.