Artifact 1739a777f6e07a26a699af0a313ee5eaf08b2934:
- File testce/Form1.cs — part of check-in [3f49013356] at 2006-01-20 23:09:15 on branch sourceforge — no message (user: rmsimpson size: 521)
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; 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(); } } }