27 lines
649 B
C#

//----------------------------------------------------------------------------
//
// Copyright © 2010, Intel Corporation. All rights reserved.
//
// File: LogWindow.cs
//
//----------------------------------------------------------------------------
using System.Windows.Forms;
using System.Drawing;
namespace UCT.Forms
{
public partial class LogWindow : BaseForm
{
public LogWindow()
{
InitializeComponent();
}
public void WriteLog(string stringLog)
{
rtbLog.Clear();
rtbLog.ReadOnly = true;
rtbLog.AppendText(stringLog);
}
}
}