forked from suicvne/smbx-indexgenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTextEditor.cs
41 lines (33 loc) · 907 Bytes
/
TextEditor.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 IndexGenerator
{
public partial class TextEditor : Form
{
MainForm form = new MainForm(null);
public TextEditor()
{
InitializeComponent();
}
private void TextEditor_FormClosed(object sender, FormClosedEventArgs e)
{
}
private void TextEditor_FormClosing(object sender, FormClosingEventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
//form.descText.Text = textBox1.Text;
}
private void TextEditor_Load(object sender, EventArgs e)
{
textBox1.Text = form.descText.Text;
}
}
}