25 lines
540 B
C#
25 lines
540 B
C#
#region Usings
|
|
using System;
|
|
using System.Windows.Forms;
|
|
using System.IO;
|
|
#endregion
|
|
|
|
#region ClientScriptDocumentation
|
|
public partial class ClientScriptDocumentation : Form
|
|
{
|
|
#region Constructor
|
|
public ClientScriptDocumentation()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
#endregion
|
|
|
|
#region Form Events
|
|
void ClientScriptDocumentationLoad(object sender, EventArgs e)
|
|
{
|
|
richTextBox1.Text = File.ReadAllText(GlobalPaths.BasePath + "\\documentation.txt");
|
|
}
|
|
#endregion
|
|
}
|
|
#endregion
|