Files
cuetools.net/CUETools/frmReport.cs
jdpurcell 9f58e03075 Can be compiled with only WAV support (since Mono doesn't support C++/CLI yet).
Adjusted control spacing, tab-order, etc.
Set Localizable=True on all forms to work around .NET auto-scaling issue.
2008-10-19 17:58:48 +00:00

21 lines
383 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace JDP
{
public partial class frmReport : Form
{
public frmReport()
{
InitializeComponent();
}
public string Message {
get { return txtReport.Text; }
set { txtReport.Text = value; }
}
}
}