Click here to Skip to main content
15,893,663 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 132.2K   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;

namespace GFramework
{
    public class GNodeCollectionEnumerator : IEnumerator
    {
        #region Constructor

        public GNodeCollectionEnumerator(GNodeCollectionBase collection)
        {
            m_Collection = collection;
        }

        #endregion

        #region IEnumerator

        public object Current
        {
            get
            {
                return m_CurrentNode;
            }
        }
        public bool MoveNext()
        {
            if (m_MoveNextIterations >= 0 && m_MoveNextIterations < m_Collection.Count)
            {
                m_CurrentNode = m_Collection.m_Nodes[m_MoveNextIterations];
            }

            m_MoveNextIterations++;

            return m_CurrentNode != null;
        }
        public void Reset()
        {
            m_CurrentNode = null;
            m_MoveNextIterations = 0;
        }

        #endregion

        #region Fields

        internal int m_MoveNextIterations;
        internal GNode m_CurrentNode;
        internal GNodeCollectionBase m_Collection;

        #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