首页 > 技术文章 > WPF WebBrowser

xe2011 2014-05-10 11:23 原文

 
XAML
<Window x:Class="WpfApplication5.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="340" Width="597">
    <Grid>
        <Button Height="23" HorizontalAlignment="Left" Margin="8,9,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click">Button</Button>
        <WebBrowser Name="webBrowser1"  Width="518" Height="221"/>
    </Grid>
</Window>
 
 
 
 
 
 
XAM.CS
 
 private void button1_Click(object senderRoutedEventArgs e)
        {
            webBrowser1.Navigate(new Uri("http://w2i.wanmei.com/launcher/index.htm"));
        }
 
 
 
 
 
 
xaml full
<Window x:Class="WpfApplication5.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="340" Width="597">
    <Grid>
        <Button Height="23" HorizontalAlignment="Left" Margin="8,9,0,0" Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click">Button</Button>
        <DockPanel HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <WebBrowser Name="webBrowser1"  Width="518" Height="221"/>
        </DockPanel>
    </Grid>    
</Window>
 
 



附件:https://files.cnblogs.com/xe2011/WpfApplication5_Webbrowser.rar



附件列表

 

推荐阅读