Artifact 244bdc499f0158ee9ec01874dba1436c9f7977a9:
- File testce/Form1.cs — part of check-in [1ff353b956] at 2011-07-01 12:09:36 on branch build-enhancements — Add 'testce' project to the new build system. Currently, it is VS2008 only. Also, removed unused 'using' statements from it. (user: mistachkin size: 399) [more...]
using System; using System.Windows.Forms; namespace test { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public void WriteLine(string str) { textBox1.Text += str + "\r\n"; } public void Write(string str) { textBox1.Text += str; } private void menuItem1_Click(object sender, EventArgs e) { Close(); } } }