示例#1
0
        public RichTextControl()
        {
            InitializeComponent();

            //Init document
            document = new SmartDeviceProject2.TextClasses.Document();
        }
示例#2
0
		//CONSTRUCTORS
		Paragraph(Document pparent)
		{
			this.lines = new List<Line>();
			this.parent = pparent;
		}