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:
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:
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?
321