text_processing/Form2.cs

37 lines
868 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp4
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Form1 Main = this.Owner as Form1;
if (textBox1.Text != "")
{
if (this.radioButton1.Checked == true)
Main.listBox1.Items.Add(this.textBox1.Text);
else Main.listBox2.Items.Add(this.textBox1.Text);
}
}
private void button2_Click(object sender, EventArgs e)
{
this.Close();
}
}
}