using System;
using System.Drawing;
using System.Windows.Forms;
namespace UILogUtils
{
///<summary>
///</summary>
public partial class LogWindow : Form
{
///<summary>
///</summary>
public LogWindow()
{
InitializeComponent();
Load += LogWindow_Load;
FormClosing += LogWindow_FormClosing;
tlsmiClearLog.Click += new EventHandler(tlsmiClearLog_Click);
tlsmiWrapText.Click += new EventHandler(tlsmiWrapText_Click);
}
void LogWindow_Load(object sender, EventArgs e)
{
tlsmiWrapText_Click(sender, e);
}
static void LogWindow_FormClosing(object sender, FormClosingEventArgs e)
{
return;
}
delegate void WriteText(object logText, Color textColor);
public void WriteToLogWindow(object logText, Color ...
Go to the complete details ...