| 123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace PCLCommunication
- {
- public partial class FrmLog : Form
- {
- public FrmLog()
- {
- InitializeComponent();
- }
- public TextBox LogText
- {
- get
- {
- return this.txtLog;
- }
- }
- }
- }
|