wpf framework

wpf framework
1.
WinTop:UserControl
WinLeft:UserControl
WinMain:UserControl
WinBottom:UserControl

MainWindow.xaml

public MainWindow()
{
Compose();
}

private void Compose()
{
Top.Content = new WinTop();
Center.Content = new WinMain();
Bottom.Content = new WinBottom();
}

你可能感兴趣的:(wpf,wpf)