资源简介
此代码是为实现html与xaml进行转换设计的!
代码片段和文件信息
//---------------------------------------------------------------------------
//
// File: HtmlXamlConverter.cs
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
// Description: Prototype for Html - Xaml conversion
//
//---------------------------------------------------------------------------
namespace HTMLConverter
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Windows; // DependencyProperty
using System.Windows.Documents; // TextElement
using System.xml;
using System.xml.Linq;
///
/// HtmlToXamlConverter is a static class that takes an HTML string
/// and converts it into XAML
///
public static class HtmlToXamlConverter
{
// ---------------------------------------------------------------------
//
// Internal Methods
//
// ---------------------------------------------------------------------
#region Internal Methods
///
/// Converts an html string into xaml string.
///
///
/// Input html which may be badly formated xml.
///
///
/// true indicates that we need a FlowDocument as a root element;
/// false means that Section or Span elements will be used
/// dependeing on StartFragment/EndFragment comments locations.
///
///
/// Well-formed xml representing XAML equivalent for the input html string.
///
public static xmlElement ConvertHtmlToXaml(string htmlString bool asFlowDocument)
{
// Create well-formed xml from Html string
xmlElement htmlElement = HtmlParser.ParseHtml(htmlString);
return htmlElement;
// Decide what name to use as a root
string rootElementName = asFlowDocument ? HtmlToXamlConverter.Xaml_FlowDocument : HtmlToXamlConverter.Xaml_Section;
// Create an xmlDocument for generated xaml
xmlDocument xamlTree = new xmlDocument();
xmlElement xamlFlowDocumentElement = xamlTree.CreateElement(null rootElementName _xamlNamespace);
// Extract style definitions from all style elements in the document
Cssstylesheet stylesheet = new Cssstylesheet(htmlElement);
// Source context is a stack of all elements - ancestors of a parentElement
ListlElement> sourceContext = new ListlElement>(10);
// Clear fragment parent
InlineFragmentParentElement = null;
// convert root html element
AddBlock(xamlFlowDocumentElement htmlElement new Hashtable() style
- 上一篇:C#贪食蛇全能版
- 下一篇:工厂用来测试键盘好坏的的一个软件
相关资源
- c#读取txt(cs、html)文件
- C# .NET5.0(net core)基于WPF(XAML)开发
- 自己用C#写的Word转Html工具,亲测可用
- html和c#交互小
- html5毕业论文
- HTMLC#多个前端,后台的模板
- Winform C# C/S 程序 html 富文本编辑器
- Spire.PDF.rar
- 航天航空在线订票系统.
- winform 使用html做界面
- 2321363LearnWPFMVVM-XAMLCandtheMVVMpattern.pdf
- 史上最牛Asp.net将Html页面转Word(Aspo
- 基于html5、JS实现的二维码扫码
- WPF从入门到精通开发指南
- c#asp.net表格Html数据模板转换Pdf文件
- 学生在线选课系统
- c# 使用插件wkhtmltopdf
- C# HTML转成PDF 文件
- .Net HTML页面转PDF格式
- winform插件cefsharp65最新版完美demo,完
- win8应用商店程序fashionHouse
- GeckoFx 最新版本 完美支持HTML5 C# demo
- 含数据库的在线购物网页
- W3School离线手册html css js jquery等多合一
- asp.net mvc 网上书店系统
- ASP.NET购物网站全部资源.zip
- C#生成网页截图 将指定html网页转换成
- js+html5+css3多平台时尚用户登录界面设
- HTML解析C# 包涵注释,全中文
- C# HtmlToWord 将HTML文件转换成word文档
评论
共有 条评论