PL-200 · Question #19
You are creating a canvas app. A user will click a button on each screen of a Power Apps app to proceed to the next screen. You need to implement an action that selects the next screen that the user…
The correct answer is D. OnSelect. In Power Apps canvas apps, the OnSelect event fires when a user clicks or taps a control such as a button. To navigate to the next screen, you write navigation logic (e.g., Navigate(NextScreen, ScreenTransition.Fade)) inside the button's OnSelect property. OnLoad fires when a…
Question
Options
- AOnLoad
- BOnCheck
- CScreenTransition
- DOnSelect
How the community answered
(43 responses)- A2% (1)
- B5% (2)
- C2% (1)
- D91% (39)
Explanation
In Power Apps canvas apps, the OnSelect event fires when a user clicks or taps a control such as a button. To navigate to the next screen, you write navigation logic (e.g., Navigate(NextScreen, ScreenTransition.Fade)) inside the button's OnSelect property. OnLoad fires when a screen loads (not triggered by a button click), OnCheck is used with checkbox controls to respond to check/uncheck actions, and ScreenTransition is a transition style enum used as a parameter inside Navigate()-not an event handler.
Topics
Community Discussion
No community discussion yet for this question.