Click here to Skip to main content
15,888,020 members
Articles / Desktop Programming / Windows Forms

GMarkupLabel - A C# Windows Forms control to display XML-formatted text

Rate me:
Please Sign up or sign in to vote.
4.95/5 (77 votes)
25 Nov 2008CPOL9 min read 131.4K   1.1K   166  
A framework, and a WinForms control which enables .NET 2.0 users to visualize XML-formatted rich text.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Text;
using GFramework;
using GFramework.View.Text;
using GFramework.WinForm;

namespace GFrameworkTest
{
    public partial class MarkupLabelTest : Form
    {
        #region Constructor

        public MarkupLabelTest()
        {
            InitializeComponent();

            gMarkupLabel1.AnchorClicked += new GEventHandler(MarkupLabel1_AnchorClicked);
        }

        #endregion

        #region Methods

        private void MarkupLabel1_AnchorClicked(GEventArgs args)
        {
            GAnchorClickEventData data = (GAnchorClickEventData)args.Data;
            MessageBox.Show("Anchor '" + data.Text + "' clicked.\r\n" + "Href: " + data.Href);
        }

        #endregion

        #region Properties

        public GMarkupLabel Label
        {
            get
            {
                return gMarkupLabel1;
            }
        }

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Telerik Corp.
Bulgaria Bulgaria
.NET & C# addicted. Win8 & WinRT enthusiast and researcher @Telerik.

Comments and Discussions