zl程序教程

您现在的位置是:首页 >  后端

当前栏目

wpf framework

WPF Framework
2023-09-14 09:10:46 时间

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();
}