You need to define a custom help setting in the event procedure

You are developing a Windows Store app.
The following code segment defines an event procedure. (Line numbers are included for reference only.)

You need to define a custom help setting in the event procedure.

You are developing a Windows Store app.
The following code segment defines an event procedure. (Line numbers are included for reference only.)

You need to define a custom help setting in the event procedure.

Answer:

Explanation:



Leave a Reply 2

Your email address will not be published. Required fields are marked *


Danny Nelier

Danny Nelier

The order cannot be right. You cannot use the settingsHandler in you settings command if it is not defined yet.

I would say the answer is:

UICommandInvokeHandler settingsHandler = new UICommandInvokeHandler(OnSettingsClicked)
SettingsCommand helpCommand = new….
eventArgs.Request.ApplicationCommands.Add(helpCommand)

Someone else?