WPF windows和page的打开方法

mac2024-05-27  53

windows

EditGateLIst gatel = new WpfApplication1.EditGateLIst(); gatel.ShowDialog();

page

NavigationWindow window = new NavigationWindow(); window.Source = new Uri("Page1.xaml", UriKind.Relative); window.Show();

 

最新回复(0)