基本信息
源码名称:wpf htmlPanel控件 入门级示例
源码大小:2.28M
文件格式:.rar
开发语言:C#
更新时间:2017-06-07
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559

本次赞助数额为: 2 元 
   源码介绍

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace WpfBrowser
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        string urlTextFront = @"<html>
    <head>
        <link rel='Stylesheet' href='StyleSheet' />
<style>
</style>
    </head>
    <body>
<div class='msg_item fn-clear'style='background-color:#FFF'>
<div  style='font-size:14px; color:#7E90A5;display:inline;'>
<img style='display:inline;float:left;border-radius:10px;' src='file:///D:/VisulStuudioTest/ImYoung/ImYoung/Emoji/88_org.gif'/>
<span>闫驚鏵</span></div>
<blockquote class='example'>
            <div class='msg'>(Visual) FoxPro, 4th Dimension/4D, Alice, APL, Arc, Automator, Awk, Bash, bc, Bourne shell, C  CLI, CFML, cg, CL (OS/400), Clean, Clojure, Emacs Lisp, Factor, Forth, Hack, Icon, Inform, Io, Ioke, J, JScript.NET, LabVIEW, LiveCode, M4, Magic, Max/MSP, Modula-2, Moto, NATURAL, OCaml, OpenCL, Oz, PILOT, Programming Without Coding Technology, Prolog, Pure Data, Q, RPG (OS/400), S, Smalltalk, SPARK, Standard ML, TOM, VBScript, Z shell</div>
</blockquote>
          ";
        string urlTextLater
 = @"</div>
        </body>
        </html>";
        public MainWindow()
        {
            InitializeComponent();
            _htmlPanel.Text = urlTextFront urlTextLater;
        }
    }
}