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 WindowsFormsApplication1 { public partial class HlavniFormular : Form { public HlavniFormular() { InitializeComponent(); } private void btnVyhodnoceni_Click( object sender, EventArgs e ) { VyhodnoceniFormular vyhodnoceniFormular = new VyhodnoceniFormular(); vyhodnoceniFormular.Show(); } private void button1_Click( object sender, EventArgs e ) { VyhodnoceniGraficky vyhodnoceniGrafickyFormular = new VyhodnoceniGraficky(); vyhodnoceniGrafickyFormular.Show(); } private void HlavniFormular_Load( object sender, EventArgs e ) { } } }