Ejemplo n.º 1
0
		private void bitmapClick(object sender, System.EventArgs e) {
			if (imageForm.IsDisposed) {imageForm = new ImageForm(graph);}
			imageForm.Reset();
			imageForm.Show();
			imageForm.BringToFront();
		}
Ejemplo n.º 2
0
		public MainForm()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			graph.Bar = progressBar;
			graph.xLabel = xLabel;
			graph.yLabel = yLabel;

			printDocument = graph.GetPrintDocument();

			//graph.setRange(-5, -5, 5, 5);
			this.Controls.Add(graph);
			this.Text = Title + System.IO.Path.GetFileNameWithoutExtension(graph.Model.Filename);
			rangeForm = new RangeForm(graph);
			optionsForm = new OptionsForm(graph);
			imageForm = new ImageForm(graph);
			compilerForm = new CompilerOptionsForm(graph);
			libraryForm = new LibraryForm(graph, this);
			fitForm = new FitForm(graph);
			aboutForm = new AboutForm();
			ResetMenu();
		}