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 M04 { public partial class NapovedaForm : Form { public NapovedaForm() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { this.Close(); } // // // Ta nápověda je tu fakt potřebná. // // Fakt. Jak jinak byste přišli na zoomování? // private void textBox1_TextChanged(object sender, EventArgs e) { } } }