Introduction
When I look at tutorials on how to develop a navigation menu in UWP design, all I see is XAML code being used.
Problem
I can't find any other video tutorials on how to develop a navigation menu in C# code only.
Question
How can I develop this navigation (See Image) menu using only C#?
The use of Xaml files is to separate the UI and the code. Once the UI code is mixed with logic code, the app will become very bloated and difficult to maintain.
So it is more convenient to use the XAML code design. If you do want to do this by code-behind, please refer to the following code.