在WPF中,可以通過以下幾種方式實現多個XAML界面的切換:
<Window>
<Grid>
<Frame x:Name="ContentFrame" />
</Grid>
</Window>
private void Button_Click(object sender, RoutedEventArgs e)
{
ContentFrame.Navigate(new Uri("Page1.xaml", UriKind.Relative));
}
<Window>
<Grid>
<ContentControl x:Name="Content" />
</Grid>
</Window>
private void Button_Click(object sender, RoutedEventArgs e)
{
Content.Content = new Page1();
}
以上是幾種常見的實現多個XAML界面切換的方式,根據具體需求和項目架構選擇合適的方式。