mirror of
https://github.com/Novetus/Novetus_src.git
synced 2025-02-01 02:03:02 +02:00
36 lines
844 B
C#
36 lines
844 B
C#
#region Usings
|
|
using System;
|
|
using System.Windows.Forms;
|
|
#endregion
|
|
|
|
namespace Novetus.ClientScriptTester
|
|
{
|
|
#region ClientScriptTestForm
|
|
public partial class ClientScriptTestForm : Form
|
|
{
|
|
#region Constructor
|
|
public ClientScriptTestForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
#endregion
|
|
|
|
#region Form Events
|
|
private void ClientScriptTestForm_Load(object sender, EventArgs e)
|
|
{
|
|
foreach (string str in LocalVars.SharedArgs)
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(str))
|
|
{
|
|
OutputBox.AppendText(str + LocalVars.DoubleSpacedNewLine);
|
|
}
|
|
}
|
|
|
|
OutputBox.SelectionStart = 0;
|
|
OutputBox.ScrollToCaret();
|
|
}
|
|
#endregion
|
|
}
|
|
#endregion
|
|
}
|