-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGraphForm.Designer.cs
More file actions
113 lines (106 loc) · 5.02 KB
/
GraphForm.Designer.cs
File metadata and controls
113 lines (106 loc) · 5.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
using OxyPlot.WindowsForms;
namespace HV_Test
{
partial class PlotForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btnClose = new System.Windows.Forms.Button();
this.btnSaveGraph = new System.Windows.Forms.Button();
this.pictureBox1 = new OxyPlot.WindowsForms.PlotView();
this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.BackColor = System.Drawing.Color.Gainsboro;
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnClose.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnClose.Location = new System.Drawing.Point(401, 427);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 25);
this.btnClose.TabIndex = 0;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = false;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnSaveGraph
//
this.btnSaveGraph.BackColor = System.Drawing.Color.Gainsboro;
this.btnSaveGraph.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btnSaveGraph.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnSaveGraph.Location = new System.Drawing.Point(261, 427);
this.btnSaveGraph.Name = "btnSaveGraph";
this.btnSaveGraph.Size = new System.Drawing.Size(134, 25);
this.btnSaveGraph.TabIndex = 0;
this.btnSaveGraph.Text = "Export Image";
this.btnSaveGraph.UseVisualStyleBackColor = false;
this.btnSaveGraph.Click += new System.EventHandler(this.btnSaveGraph_Click);
//
// pictureBox1
//
this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Cross;
this.pictureBox1.Location = new System.Drawing.Point(2, 2);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.PanCursor = System.Windows.Forms.Cursors.Hand;
this.pictureBox1.Size = new System.Drawing.Size(487, 418);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
this.pictureBox1.ZoomHorizontalCursor = System.Windows.Forms.Cursors.SizeWE;
this.pictureBox1.ZoomRectangleCursor = System.Windows.Forms.Cursors.SizeNWSE;
this.pictureBox1.ZoomVerticalCursor = System.Windows.Forms.Cursors.SizeNS;
//
// saveFileDialog
//
this.saveFileDialog.DefaultExt = "png";
this.saveFileDialog.FileName = "plot";
this.saveFileDialog.Filter = "PNG|*.png";
//
// PlotForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.ClientSize = new System.Drawing.Size(495, 461);
this.Controls.Add(this.pictureBox1);
this.Controls.Add(this.btnSaveGraph);
this.Controls.Add(this.btnClose);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.MaximizeBox = false;
this.Name = "PlotForm";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Plot";
this.Load += new System.EventHandler(this.PlotForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnSaveGraph;
//private System.Windows.Forms.PictureBox pictureBox1;
private PlotView pictureBox1;
private System.Windows.Forms.SaveFileDialog saveFileDialog;
}
}