I Used Modern UI for WPF and use this library.
From menu link group I used this :
<mui:ModernWindow x:Class="SKBPK2014.MainWindow"
ContentSource="/UI/Pages/Home.xaml">
<mui:ModernWindow.MenuLinkGroups>
<mui:LinkGroup DisplayName="Sampel">
<mui:LinkGroup.Links>
<mui:Link DisplayName="HOME" Source="/UI/Pages/Home.xaml" />
<mui:Link DisplayName="DAFTAR SAMPEL" Source="/UI/Kuesioner/DaftarSampel.xaml" />
</mui:LinkGroup.Links>
</mui:LinkGroup>
How to get All UI control in a list in the first load. Not clicking the mui:Link
. ? I wanna get like this
List<UIControl> UiControl;
it will contains all UIControl in My ModernWindow
. so it will contains {Home,DaftarSampel,}
object List in the first load..