[2008] Something Very Simple
I'm just starting to use vb 2008 so i'm kinda new this.
I made a button and a canvas. (i tried this with a frame too but same issue)
I'm trying to make it so when the user presses the button the canvas will disapear.
I am using the wpf. ( i'm trying to learn it. It seems cool)
I know in regular vb 2005 I would just set the visible property.
But with this i'm lost. I tried the visibility property but i cant get it to work.. Can anybody help?
and thanks in advance
Re: [2008] Something Very Simple
if you don't need to display it anymore you might could try .Dispose().
Justin Fox
Re: [2008] Something Very Simple
thanks
well i'm trying to have it so the user will be able to toggle the canvas on and off.
Re: [2008] Something Very Simple
Ok I got it working
Canvas1.Visibility = Visibility.Visible
Re: [2008] Something Very Simple
Kinda weird, but thats cool!
Justin