WPF WebBrowser

时间:2014-05-12 13:35:37   收藏:0   阅读:529
bubuko.com,布布扣
 
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"));
        }
 
 
bubuko.com,布布扣
 
 
 
 
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>
 
 



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



附件列表

 

WPF WebBrowser,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!