HamBook – Blame information for rev 14
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
10 | office | 1 | namespace HamBook |
2 | { |
||
3 | partial class SpectrogramForm |
||
4 | { |
||
5 | /// <summary> |
||
6 | /// Required designer variable. |
||
7 | /// </summary> |
||
8 | private System.ComponentModel.IContainer components = null; |
||
9 | |||
10 | #region Windows Form Designer generated code |
||
11 | |||
12 | /// <summary> |
||
13 | /// Required method for Designer support - do not modify |
||
14 | /// the contents of this method with the code editor. |
||
15 | /// </summary> |
||
16 | private void InitializeComponent() |
||
17 | { |
||
18 | this.components = new System.ComponentModel.Container(); |
||
19 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SpectrogramForm)); |
||
20 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); |
||
21 | this.timer1 = new System.Windows.Forms.Timer(this.components); |
||
22 | this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); |
||
23 | this.pictureBox2 = new System.Windows.Forms.PictureBox(); |
||
24 | this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); |
||
25 | this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
||
14 | office | 26 | this.pinToDesktopToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
27 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); |
||
10 | office | 28 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); |
29 | this.tableLayoutPanel1.SuspendLayout(); |
||
30 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); |
||
31 | this.contextMenuStrip1.SuspendLayout(); |
||
32 | this.SuspendLayout(); |
||
33 | // |
||
34 | // pictureBox1 |
||
35 | // |
||
36 | this.pictureBox1.BackColor = System.Drawing.Color.Black; |
||
37 | this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; |
||
38 | this.pictureBox1.Location = new System.Drawing.Point(3, 3); |
||
39 | this.pictureBox1.Name = "pictureBox1"; |
||
40 | this.pictureBox1.Size = new System.Drawing.Size(734, 506); |
||
41 | this.pictureBox1.TabIndex = 0; |
||
42 | this.pictureBox1.TabStop = false; |
||
43 | this.pictureBox1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseClick); |
||
44 | this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseDown); |
||
45 | this.pictureBox1.MouseEnter += new System.EventHandler(this.SpectrogramForm_MouseEnter); |
||
46 | this.pictureBox1.MouseLeave += new System.EventHandler(this.SpectrogramForm_MouseLeave); |
||
47 | this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseMove); |
||
48 | this.pictureBox1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseUp); |
||
49 | // |
||
50 | // timer1 |
||
51 | // |
||
52 | this.timer1.Enabled = true; |
||
53 | this.timer1.Interval = 1; |
||
54 | this.timer1.Tick += new System.EventHandler(this.timer1_Tick); |
||
55 | // |
||
56 | // tableLayoutPanel1 |
||
57 | // |
||
58 | this.tableLayoutPanel1.ColumnCount = 2; |
||
59 | this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
||
60 | this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F)); |
||
61 | this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 0, 0); |
||
62 | this.tableLayoutPanel1.Controls.Add(this.pictureBox2, 1, 0); |
||
63 | this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill; |
||
64 | this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0); |
||
65 | this.tableLayoutPanel1.Name = "tableLayoutPanel1"; |
||
66 | this.tableLayoutPanel1.RowCount = 1; |
||
67 | this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F)); |
||
68 | this.tableLayoutPanel1.Size = new System.Drawing.Size(840, 512); |
||
69 | this.tableLayoutPanel1.TabIndex = 1; |
||
70 | this.tableLayoutPanel1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseClick); |
||
71 | this.tableLayoutPanel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseDown); |
||
72 | this.tableLayoutPanel1.MouseEnter += new System.EventHandler(this.SpectrogramForm_MouseEnter); |
||
73 | this.tableLayoutPanel1.MouseLeave += new System.EventHandler(this.SpectrogramForm_MouseLeave); |
||
74 | this.tableLayoutPanel1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseMove); |
||
75 | this.tableLayoutPanel1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseUp); |
||
76 | // |
||
77 | // pictureBox2 |
||
78 | // |
||
79 | this.pictureBox2.BackColor = System.Drawing.Color.White; |
||
80 | this.pictureBox2.Dock = System.Windows.Forms.DockStyle.Fill; |
||
81 | this.pictureBox2.Location = new System.Drawing.Point(743, 3); |
||
82 | this.pictureBox2.Name = "pictureBox2"; |
||
83 | this.pictureBox2.Size = new System.Drawing.Size(94, 506); |
||
84 | this.pictureBox2.TabIndex = 1; |
||
85 | this.pictureBox2.TabStop = false; |
||
86 | this.pictureBox2.MouseClick += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseClick); |
||
87 | this.pictureBox2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseDown); |
||
88 | this.pictureBox2.MouseEnter += new System.EventHandler(this.SpectrogramForm_MouseEnter); |
||
89 | this.pictureBox2.MouseLeave += new System.EventHandler(this.SpectrogramForm_MouseLeave); |
||
90 | this.pictureBox2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseMove); |
||
91 | this.pictureBox2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseUp); |
||
92 | // |
||
93 | // contextMenuStrip1 |
||
94 | // |
||
95 | this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
||
14 | office | 96 | this.pinToDesktopToolStripMenuItem, |
97 | this.toolStripSeparator1, |
||
10 | office | 98 | this.closeToolStripMenuItem}); |
99 | this.contextMenuStrip1.Name = "contextMenuStrip1"; |
||
14 | office | 100 | this.contextMenuStrip1.Size = new System.Drawing.Size(181, 76); |
10 | office | 101 | this.contextMenuStrip1.MouseEnter += new System.EventHandler(this.SpectrogramForm_MouseEnter); |
102 | this.contextMenuStrip1.MouseLeave += new System.EventHandler(this.SpectrogramForm_MouseLeave); |
||
103 | // |
||
104 | // closeToolStripMenuItem |
||
105 | // |
||
106 | this.closeToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("closeToolStripMenuItem.Image"))); |
||
107 | this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; |
||
14 | office | 108 | this.closeToolStripMenuItem.Size = new System.Drawing.Size(180, 22); |
10 | office | 109 | this.closeToolStripMenuItem.Text = "Close"; |
110 | this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click); |
||
111 | // |
||
14 | office | 112 | // pinToDesktopToolStripMenuItem |
113 | // |
||
114 | this.pinToDesktopToolStripMenuItem.CheckOnClick = true; |
||
115 | this.pinToDesktopToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("pinToDesktopToolStripMenuItem.Image"))); |
||
116 | this.pinToDesktopToolStripMenuItem.Name = "pinToDesktopToolStripMenuItem"; |
||
117 | this.pinToDesktopToolStripMenuItem.Size = new System.Drawing.Size(180, 22); |
||
118 | this.pinToDesktopToolStripMenuItem.Text = "Pin to Desktop"; |
||
119 | this.pinToDesktopToolStripMenuItem.CheckStateChanged += new System.EventHandler(this.pinToDesktopToolStripMenuItem_CheckStateChanged); |
||
120 | // |
||
121 | // toolStripSeparator1 |
||
122 | // |
||
123 | this.toolStripSeparator1.Name = "toolStripSeparator1"; |
||
124 | this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6); |
||
125 | // |
||
10 | office | 126 | // SpectrogramForm |
127 | // |
||
128 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
||
129 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
||
130 | this.BackColor = System.Drawing.Color.Black; |
||
131 | this.ClientSize = new System.Drawing.Size(840, 512); |
||
132 | this.ControlBox = false; |
||
133 | this.Controls.Add(this.tableLayoutPanel1); |
||
134 | this.DoubleBuffered = true; |
||
135 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; |
||
136 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); |
||
137 | this.MaximizeBox = false; |
||
138 | this.MaximumSize = new System.Drawing.Size(840, 512); |
||
139 | this.MinimizeBox = false; |
||
140 | this.MinimumSize = new System.Drawing.Size(840, 512); |
||
141 | this.Name = "SpectrogramForm"; |
||
142 | this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; |
||
143 | this.Text = "HamBook: Spectrogram"; |
||
144 | this.Activated += new System.EventHandler(this.SpectrogramForm_Activated); |
||
145 | this.Load += new System.EventHandler(this.SpectrogramForm_Load); |
||
146 | this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseClick); |
||
147 | this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseDown); |
||
148 | this.MouseEnter += new System.EventHandler(this.SpectrogramForm_MouseEnter); |
||
149 | this.MouseLeave += new System.EventHandler(this.SpectrogramForm_MouseLeave); |
||
150 | this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseMove); |
||
151 | this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.SpectrogramForm_MouseUp); |
||
152 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); |
||
153 | this.tableLayoutPanel1.ResumeLayout(false); |
||
154 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); |
||
155 | this.contextMenuStrip1.ResumeLayout(false); |
||
156 | this.ResumeLayout(false); |
||
157 | |||
158 | } |
||
159 | |||
160 | #endregion |
||
161 | |||
162 | private System.Windows.Forms.PictureBox pictureBox1; |
||
163 | private System.Windows.Forms.Timer timer1; |
||
164 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; |
||
165 | private System.Windows.Forms.PictureBox pictureBox2; |
||
166 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; |
||
167 | private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem; |
||
14 | office | 168 | private System.Windows.Forms.ToolStripMenuItem pinToDesktopToolStripMenuItem; |
169 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; |
||
10 | office | 170 | } |
171 | } |