12 lines
285 B
C#
12 lines
285 B
C#
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;
|
|
}
|
|
}
|
|
} |