This commit is contained in:
Jsj
2008-08-22 18:48:51 +00:00
parent 4cc3c5f1f7
commit 938c5ab566
7 changed files with 476 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Volian.Controls.Library
{
public partial class PreviewMultiLineRO : DevComponents.DotNetBar.Office2007Form //Form
{
public PreviewMultiLineRO(string thetext, string title)
{
InitializeComponent();
this.rtbPreviewMlRO.Text = thetext;
this.Text = title;
}
}
}