How to use Itunes-like functionality of windows-7 with WPF? (thumbnail toolbar)
How to use such functionality of windows-7 with WPF (one that uses Itunes - see the Prt Scrn below)? ...
How to use such functionality of windows-7 with WPF (one that uses Itunes - see the Prt Scrn below)? ...
I'm trying to make a thumbnail toolbar button (TTB from now on)visible when the it is clicked. I know how to do stuff when it is clicked, AddHandler etc. But if I tell it TTB.visible=false then it doesn't become invisible. If I put TTB.enabled = False it will be disabled, so it's only the visible that isn't working. Also I put a button...
Hi, I am usign WindowsApiCodePack for windows 7 to make a thumbnail toolbar for my form. In the form shown event i am doing this: tbButton1 = new ThumbnailToolbarButton(new Icon("myOverlayIcn.ico"), "Next Event"); tbButton1.Click += new EventHandler<ThumbnailButtonClickedEventArgs>(button1_Click); tbButton2 = new ThumbnailToolb...