Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to implement own TreeView with blinked TreeNode. My prototype is:

public class BlinkTreeView : TreeView
    {
        private int blinkInterval; 

        private bool blinkState;

        [Category("Behavior"), Browsable(true)]
        public Icon BlinkIcon { get; set; }

        [Category("Behavior"), Browsable(true)]
        public Icon SelectedBlinkIcon { get; set; }

        [Category("Behavior"), Browsable(true), DefaultValue(1000)]
        public int BlinkInterval {
            get
            {
                return blinkInterval;
            }
            set
            {
                blinkInterval = value;
                if (value > 0)
                {
                    blinkTimer.Interval = value;
                    blinkTimer.Start();
                }
                else
                {
                    blinkTimer.Stop();
                    blinkState = false;
                    Invalidate();
                }
            }
        }

        private Timer blinkTimer;

        public BlinkTreeView()
            : base()
        {
            blinkTimer = new Timer();
            blinkTimer.Tick += new EventHandler(blinkTimer_Tick);
            blinkState = false;
            this.DrawMode = TreeViewDrawMode.OwnerDrawAll;
        }

        void blinkTimer_Tick(object sender, EventArgs e)
        {
            if (BlinkInterval > 0)
            {
                blinkState = !blinkState;
            }
            else
            {
                blinkState = false;
            }
            Invalidate();
        }

        protected override void OnDrawNode(DrawTreeNodeEventArgs e)
        {
            e.DrawDefault = true;
            base.OnDrawNode(e);
            if (blinkState)
                {
//here i want to draw blinked item, but i can't redraw item icons and text.
                }
            }
        }

In OnDrawNode i can't redraw icon and text of node. Any idea how to solve this?

share|improve this question
What is the problem? Do you get any exceptions? – Rune Grimstad Sep 10 '09 at 8:13
No, just on e.Graphics I can draw under image that drawn in base.OnDrawNode(e); – Chernikov Sep 10 '09 at 8:22

2 Answers

up vote 2 down vote accepted

Just a thought, but you could invert (xor) over the item without making the tree into an owner-draw control. I think it works something like the following:

		using (Graphics g = Graphics.FromHwnd(Tree.Handle))
		{
			TreeNode node = myBlinkyNode;
			if (node != null)
			{
				using(Region myRegion = new Region(node.Bounds))
					myRegion.Xor(xorRect);
			}
		}

You'll need to keep track if the blink is visible or not and handle the Paint event so that you can re-draw the inverted rectangle.

share|improve this answer
Yes, It can be solution, but I need indeed blinky icon of Node. – Chernikov Sep 11 '09 at 11:11

Have a timer toggle the state of the blinking nodes, i.e.:

Node.ForeColor = Node.ForeColor == Color.White ? Color.Black : Color.White;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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