12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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 WindowsFormsApp19
- {
- public partial class Form3 : Form
- {
- public Form3()
- {
- InitializeComponent();
- AutoCompleteStringCollection source = new AutoCompleteStringCollection()
- {
- "Кузнецов",
- "Иванов",
- "Петров",
- "Кустов"
- };
- textBox2.AutoCompleteCustomSource = source;
- textBox2.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
- textBox2.AutoCompleteSource = AutoCompleteSource.CustomSource;
- textBox3.TextChanged += textBox3_TextChanged;
- }
- private void Form3_Load(object sender, EventArgs e)
- {
- }
- private void textBox2_TextChanged(object sender, EventArgs e)
- {
- }
- private void textBox3_TextChanged(object sender, EventArgs e)
- {
- label3.Text = textBox3.Text;
- }
- private void button1_Click(object sender, EventArgs e)
- {
- Form4 frm4 = new Form4();
- frm4.Show();
- }
- }
- }
|