Artifact f47ff675e4e35bc5900c389652032e853bd2467c:
- File testce/Form1.cs — part of check-in [198f7e0e95] at 2005-08-02 05:35:45 on branch sourceforge — 1.0.12 - Compact Framework Support (user: rmsimpson size: 430)
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; } } }