Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am want to remove last draw line on Canvas in button click event.

this.ContentPanelCanvas.Children.Clear();

Above line remove a all draw line on canvas.I just want to remove last draw line. Any one know how can i do this?

share|improve this question

1 Answer

up vote 0 down vote accepted

I haven't tested it, but the last line is probably also the last element of the Children collection. Therefore, you should be able to do:

if (this.ContentPanelCanvas.Children.Count > 0)
{
    this.ContentPanelCanvas.Children.RemoveAt(this.ContentPanelCanvas.Children.Count - 1);
}
share|improve this answer
Thank you for replaying.... – sejal patel Nov 23 '12 at 5:39

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.