I'm on writing a simple application, it has a menu and when user choices each MenuItem
, i want to change my window's content to display the selected content.
i have two option to that.
- i can add a
<Frame></Frame>
to my window and write some pages. - i can write some
UserControls
and put them in aContentControl
as user fires MenuItem
click event.
so I'm confused to select the right choice for this purpose.