
Announcements
Hi All
I am building an application where the navigation on on a container to the left and the content will be displayed in the maincontentcontainer on the right side of the screen, I cannot figure out how when I press one of the buttons how to get the content into the maincontentcontainer
This is the app
This is what I have right now
Hope you can help
Many Thanks
Rob
What screen of your app, is that screenshot from? The action you have listed would navigate the user to the 'Personal Information' screen. I believe you are trying to remain on the same screen, but show different content within the 'MainSectionContainer1' container.
This could be accomplished with a variable, but I caution you about layering too many controls and using variables to show/hide. This can become both tedious to code, and slow for the user (as screen complexity increases).
Instead, you can use the layout you've shown and use the same buttons (or a component) to act as the navigation. Then by clicking the button, the user will navigate to a screen with the appropriate content in the screen's particular 'MainSectionContainer1' (it will be named differently, if copied, and should be named to match the screen).
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/create-component
Some quick tips