When to show WyUpdate

Hello,

I have a WPF application where space is at a premium. I've have hopes of hiding this control in an Expander class and showing/hiding the icon as needed - pretty much if WyUpdate is showing anything I'll show it, but on the other 11 days that it's not doing anything I want to hide it. (I wouldn't mind hiding it a minute or two after it 'completes' everything on the days it does do something, but that's secondary).

I've been playing around with the events listed here (http://wyday.com/wybuild/help/automatic-updates/members.php) but can't come up with a good algorithm for when to show and hide it. Is there some specific event that happens that lets me know that WyUpdate is now showing something?

I would be happy just figuring out of today is the day of checking for the update. Are BeforeChecking/BeforeDownloading sufficient? Maybe add in ReadyToBeInstalled?

Thanks for any help, -Dan

Hey Dan,

You can use Visible = false and KeepHidden = true to keep the AutomaticUpdater completely hidden while it does its work. Then, when you have an update downloaded or ready to install ("ReadyToBeInstalled" or "UpdateAvailable") you can change the Visibility to true.

That worked well, thanks!