WPF中有个很好的机制,就是Frame,Frame不仅可以像网页中的Frame一样加载Wpf的page对象,还可以加载WEB,使用方法:
frame1.Source = new Uri("http://localhost:2613/Default.aspx");
当然也可以用Navigate方法设置Source的Uri,还可以通过设置Content,但是稍微麻烦一点,因为需要创建一个WebBrowser对象作为Content
在MainWindows.xaml中引用Fram控件
<Frame x:Name="frame1" Margin="0,59,0,0" Width="300" Height="300" Source="Page1.xaml" />
在Page1.xaml中随便定义一些内容。
<Grid> <TextBlock>ssfsdf</TextBlock> </Grid>
--------------------------------------------------------------------------------------------------------------------------------------------
顺势而为
顺势而为