zoukankan      html  css  js  c++  java
  • WPF WebBrowser

     
    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>
     
     





    附件列表

  • 相关阅读:
    文件路径总结
    git本地仓库关联远程仓库
    webpack-dev-server版本
    box-sizing重置
    事件委托优缺点和实现
    移动端经验总结(持续更新)
    点击其他区域关闭dialog
    css3图片变灰
    安装 ubuntu 后,使用 sed 更换国内源
    在virtualBox中打开vdi(转载)
  • 原文地址:https://www.cnblogs.com/xe2011/p/3720228.html
Copyright © 2011-2022 走看看