How to click a button of the page to change the source of the frame of Windows?

余生颓废 提交于 2019-12-20 14:36:24

问题


I have a WPF project, I add a frame in the Windows,the source of the frame is the page. I want to achieve clicking a button in the page to change the page of the frame.

<Window x:Class="MagicArm.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:MagicArm"
    Title="MainWindow">
   <Frame Name="FrameContent"Source="PageStart.xaml"></Frame>
</Window>

PageStart:

<Page x:Class="MagicArm.PageStart"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  mc:Ignorable="d" 
  Height="452" Width="800"
  Title="PageStart">
<Canvas>
 <button name=""> </button>
</Canvas>


回答1:


EDIT: A functional solution can look like:

MainWindow XAML:

<StackPanel>
    <Frame Name="frmMainContent" Height="260"
         DataContext="MyPageInformation"
         Source="{Binding}"
         NavigationUIVisibility="Hidden">           
    </Frame>

</StackPanel>

MainWindow cs:

 frmMainContent.Source = new Uri("test1.xaml", UriKind.Relative); // initialize frame with the "test1" view

test1 XAML:

<Grid>
    <Button Click="ButtonBase_OnClick" Background="Red" Height="30" Width="100">Go to page 2</Button>
</Grid>

test1 cs:

private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
    {
        NavigationService ns = NavigationService.GetNavigationService(this);
        ns.Navigate(new Uri("test2.xaml", UriKind.Relative));
    }

test2 XAML:

  <Grid>
        <Button Click="ButtonBase_OnClick" Width="100" Height="30" Background="RoyalBlue"> Go to page 1</Button>
    </Grid>

test2 cs:

 NavigationService ns = NavigationService.GetNavigationService(this);
            ns.Navigate(new Uri("test1.xaml", UriKind.Relative));

This is a working solution using NavigationService.



来源:https://stackoverflow.com/questions/29297986/how-to-click-a-button-of-the-page-to-change-the-source-of-the-frame-of-windows

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!