Beispiel #1
0
		private void optionItem_Click(object sender, System.EventArgs e) {
			if (optionsForm.IsDisposed) {optionsForm = new OptionsForm(graph);}
			optionsForm.Reset();
			optionsForm.Show();
			optionsForm.BringToFront();
		}
Beispiel #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();
		}