How do you open the settings dialog in a Windows desktop gadget programmatically?
The Windows desktop gadget I'm developing requires some configuration on first run, so when it detects that it hasn't been configured, I want 开发者_开发技巧to immediately open the settings dialog. Is this possible?
No, this is not supported. It's a better user experience to pick some good defaults using System.Gadget.Settings
, and then let your user change them in the settings dialog. Forcing a user to pick some settings is not great for any application's first run experience.
精彩评论