Click here to Skip to main content
15,881,882 members
Articles / Desktop Programming / Windows Forms

RichText Builder (StringBuilder for RTF)

Rate me:
Please Sign up or sign in to vote.
4.86/5 (102 votes)
12 Nov 2008CPOL4 min read 246.6K   9.9K   214  
RichText Builder - use in place of StringBuilder to output RTF.
namespace GDF
{
    using System;
    using System.Collections.Generic;
    using System.Windows.Forms;

    // ----------------------------------------------------------------------------------------
    //    _                ___        _..-._   Date: 12/11/08    23:29
    //    \`.|\..----...-'`   `-._.-'' _.-..'     
    //    /  ' `         ,       __.-'' 
    //    )/` _/     \   `-_,   /     Solution: RTFLib
    //    `-'" `"\_  ,_.-;_.-\_ ',    Project : RTFLib                                 
    //        _.-'_./   {_.'   ; /    Author  : Anton
    //       {_.-``-'         {_/     Assembly: 1.0.0.0
    //                                Copyright � 2005-2008, Rogue Trader/MWM
    //        Project Item Name:      GDFDisplayBox.cs - UserControl
    //        Purpose:                Displays GDF Output
    // ----------------------------------------------------------------------------------------
    /// <summary>
    /// Displays GDF Output
    /// </summary>
    public partial class GDFDisplayBox : UserControl
    {
        #region Fields

        private readonly BindingSource bindingsource;

        #endregion

        #region Constructor

        public GDFDisplayBox()
        {
            this.InitializeComponent();
            this.bindingsource = new BindingSource(this.components);
            this.bindingNavigator1.BindingSource = this.bindingsource;
            this.bindingsource.CurrentItemChanged += this.BindingSource_CurrentItemChanged;
            this.bindingsource.DataSourceChanged += this.bindingsource_DataSourceChanged;
        }

        #endregion

        #region Event Handlers

        private void BindingSource_CurrentItemChanged(object sender, EventArgs e)
        {
            GDFPage page = this.bindingNavigator1.BindingSource.Current as GDFPage;
            if (page != null)
            {
                this.pictureBox1.Size = page.PageImage.Size;
                this.pictureBox1.Image = page.PageImage;
            }
        }

        private void bindingsource_DataSourceChanged(object sender, EventArgs e)
        {
            GDFPage page = this.bindingNavigator1.BindingSource.Current as GDFPage;
            if (page != null)
            {
                this.pictureBox1.Size = page.PageImage.Size;
                this.pictureBox1.Image = page.PageImage;
            }
        }

        private void GDFDisplayBox_Load(object sender, EventArgs e)
        {
        }

        #endregion

        #region Public Methods

        public void SetPages(List <GDFPage> pages)
        {
            this.bindingNavigator1.BindingSource.DataSource = pages;
        }

        #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
Australia Australia
Interested in financial math and programming theory in general. Working on medical applications in spare time. Happy to get feedback.

Comments and Discussions