Latest News

  • Super Tower Defense 2 Game
    Sep 03, 2010

    New to the games section is Super Tower Defense 2. Featuring more maps, new units and bigger explosions.

  • Super Cards Online Multiplayer Game
    Aug 13, 2010

    Released today in the games section is the new Super Cards multiplayer card game. The aim of the game is to get rid of all your playing cards before your opposition.

  • Silverlight Online Chat
    Jul 24, 2010

    Today we launch the new Silverlight Live Chat application demonstrating the Liquid RichTextBox and Emoticon replacements.

  • New Super Shoot Em Up 2 Game
    Jun 29, 2010

    Added to the Games section is the new Super Shoot 'Em Up 2 game. Take control of your tank with the aim to defeat the computer controlled opponents. Features all new weapons, levels and Battle Mode!

  • Silverlight 4 Controls V5.3.2 Released
    Jun 28, 2010

    This release contains several fixes raised in the forums.

Rendering HTML in Silverlight

Whilst not an obviously useful requirement, converting Rich Text to and from HTML would be very useful for applications such as Forums, web CMS's etc, the problem is getting RichText into our Silverlight application.

Using the Liquid RichTextBox we can enter RichText into a Silverlight application and then retrieve the input as XML and convert it (roughly) to HTML.

Whilst it seems like a simple task there are lots of things to take into account when trying to convert such as class/style names, bulleted lists etc.  The methods presented here in this static class were quickly nocked up in a few hours and can still be improved.

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Windows;
using System.Windows.Media;
using System.Xml;

namespace Liquid.Components
{
    public class Html
    {
        #region Public Methods

        public static string[] ConvertRichTextToHTML(string richTextXML)
        {
            Dictionary<string, RichTextBoxStyle> styleList = new Dictionary<string, RichTextBoxStyle>();
            RichTextBoxStyle style;
            XmlReader reader;
            string styleID;
            string temp;
            string tag;
            string optional;
            StringBuilder html = new StringBuilder();
            StringBuilder styles = new StringBuilder();
            

            reader = XmlReader.Create(new StringReader(richTextXML));
            reader.Read();

            while (reader.Read())
            {
                if (reader.NodeType == XmlNodeType.Element)
                {
                    temp = reader.Name.ToLower();

                    if (temp == RichTextBox.StyleElement)
                    {
                        style = new RichTextBoxStyle(reader);
                        styleList.Add(style.ID, style);

                        if (IsStyleAHeading(style.ID.ToLower()))
                        {
                            tag = "";
                        }
                        else
                        {
                            tag = ".";
                        }

                        styles.Append(tag + style.ID + " {");

                        styles.Append("font-family:" + style.Family + "; ");
                        styles.Append("font-size:" + style.Size.ToString() + "px; ");
                        styles.Append("text-align:" + style.Alignment.ToString() + "; ");
                        styles.Append("color:#" + ((SolidColorBrush)style.Foreground).Color.ToString().Substring(3) + "; ");

                        if (style.Weight == FontWeights.Bold)
                        {
                            styles.Append("font-weight:bold; ");
                        }
                        if (style.Decorations == TextDecorations.Underline)
                        {
                            styles.Append("text-decoration:underline; ");
                        }
                        if (style.Style == FontStyles.Italic)
                        {
                            styles.Append("font-style:italic; ");
                        }
                        if (style.Special == RichTextSpecialFormatting.Subscript)
                        {
                        }
                        else if (style.Special == RichTextSpecialFormatting.Superscript)
                        {
                        }

                        styles.Append(" }\r\n");
                    }
                    else if (temp == RichTextBox.TextElement)
                    {
                        styleID = reader.GetAttribute("Style");
                        reader.Read();

                        optional = "";
                        if(IsStyleAHeading(styleID.ToLower()))
                        {
                            tag = styleID.ToLower();
                        }
                        else if (styleList[styleID].Link.Length > 0)
                        {
                            tag = "a";
                            optional = " href='" + styleList[styleID].Link + "' class='" + styleID + "'";
                        }
                        else
                        {
                            tag = "span";
                            optional = " class='" + styleID + "'";
                        }

                        if (reader.NodeType == XmlNodeType.CDATA)
                        {
                            html.Append("<" + tag + optional + ">" + reader.Value + "</" + tag + ">");
                        }
                    }
                    else if (temp == RichTextBox.NewlineElement)
                    {
                        reader.Read();
                        html.Append("<br />");
                    }
                    else if (temp == RichTextBox.XamlElement)
                    {
                        continue;
                    }
                }
            }

            reader.Close();

            return new string[] { styles.ToString(), html.ToString() };
        }

        public static string ConvertRichTextToHTMLDocument(string richTextXML)
        {
            string[] temp = ConvertRichTextToHTML(richTextXML);

            return "<html><head><style>" + temp[0] + "</style></head><body>" + temp[1] + "</body></html>";
        }

        #endregion

        #region Private Methods

        private static bool IsStyleAHeading(string styleID)
        {
            return (styleID == "h1" || styleID == "h2" || styleID == "h3" || styleID == "h4");
        }

        #endregion
    }
}


The conversion using the above class does a very basic translation to HTML, and if you run the example you will see plenty of room for improvement.  In terms of converting from HTML to RichText, well, that article is on the way...

Your Comments

kanchirk posted

A Very good write up and excellent example.



Thanks for sharing the code.



It has been Quite helpful for me.



Regards



Raghuraman


 

Post your Comments

Rate this page: 

1 Star 2 Star 3 Star 4 Star 5 Star
8 Ratings / 2.5 Average

Ultimate Gamers

  • 1 Gh0sT
  • 2 stig
  • 3 dhoz
  • 4 seyhmusss
  • 5 RadiateLogic
  • 6 bigblue531
  • 7 janso
  • 8 DutchRemco
  • 9 Gendibal
  • 10 dan

  • See the full chart here!

Silverlight Controls

  • Rich TextBox

    Create and edit rich content with this slick and expandable Rich TextBox...

  • TreeView

    This easy to use TreeView comes with drag and drop, sorting, searching and much more...

  • Context Menu

    You too can have cool popup context menus in your Silverlight applications...

  • Resizable Dialog

    Draggable and resizable popup dialogs are what serious Silverlight developers need...

  • Spell Checker

    Real-time spell checking in Silverlight? We did it first here...