diff --git a/src/Gifitti/Gifitti/View_Models/MainForm.Designer.cs b/src/Gifitti/Gifitti/View_Models/MainForm.Designer.cs index 0e94ee40d24bc17198be2253f40980f8ae2f62ea..1788a3f2de20c6e3e84642e691de56f818392aad 100644 --- a/src/Gifitti/Gifitti/View_Models/MainForm.Designer.cs +++ b/src/Gifitti/Gifitti/View_Models/MainForm.Designer.cs @@ -151,7 +151,7 @@ namespace Gifitti.View_Models // this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.textBox1.Enabled = false; - this.textBox1.Location = new System.Drawing.Point(214, 461); + this.textBox1.Location = new System.Drawing.Point(214, 448); this.textBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(23, 20); @@ -162,7 +162,7 @@ namespace Gifitti.View_Models // this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.textBox2.Enabled = false; - this.textBox2.Location = new System.Drawing.Point(240, 461); + this.textBox2.Location = new System.Drawing.Point(240, 448); this.textBox2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(23, 20); @@ -173,7 +173,7 @@ namespace Gifitti.View_Models // this.button3.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.button3.Enabled = false; - this.button3.Location = new System.Drawing.Point(266, 458); + this.button3.Location = new System.Drawing.Point(266, 445); this.button3.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(50, 24); @@ -186,7 +186,7 @@ namespace Gifitti.View_Models // this.label1.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(212, 445); + this.label1.Location = new System.Drawing.Point(212, 432); this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(29, 13); @@ -197,7 +197,7 @@ namespace Gifitti.View_Models // this.label2.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(239, 445); + this.label2.Location = new System.Drawing.Point(239, 432); this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(26, 13); @@ -208,7 +208,7 @@ namespace Gifitti.View_Models // this.label3.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(160, 456); + this.label3.Location = new System.Drawing.Point(160, 443); this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(51, 26); @@ -223,19 +223,20 @@ namespace Gifitti.View_Models // trackBar1 // this.trackBar1.Anchor = System.Windows.Forms.AnchorStyles.Bottom; - this.trackBar1.Location = new System.Drawing.Point(328, 456); + this.trackBar1.Location = new System.Drawing.Point(328, 432); this.trackBar1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2); this.trackBar1.Name = "trackBar1"; this.trackBar1.Size = new System.Drawing.Size(137, 45); this.trackBar1.TabIndex = 9; this.trackBar1.Value = 10; + this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll); this.trackBar1.ValueChanged += new System.EventHandler(this.GifFPSSliderUpdate); // // label4 // this.label4.Anchor = System.Windows.Forms.AnchorStyles.Bottom; this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(358, 448); + this.label4.Location = new System.Drawing.Point(354, 417); this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(85, 13); @@ -248,7 +249,7 @@ namespace Gifitti.View_Models this.label6.AutoSize = true; this.label6.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 14F); - this.label6.Location = new System.Drawing.Point(65, 455); + this.label6.Location = new System.Drawing.Point(65, 442); this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(72, 24); diff --git a/src/Gifitti/Gifitti/View_Models/MainForm.cs b/src/Gifitti/Gifitti/View_Models/MainForm.cs index a977017f6267090b71ead90855eafb72932e9fd1..7c911822c2c0afcf9b5d69b2f8dafb7eba09a32c 100644 --- a/src/Gifitti/Gifitti/View_Models/MainForm.cs +++ b/src/Gifitti/Gifitti/View_Models/MainForm.cs @@ -322,5 +322,10 @@ namespace Gifitti.View_Models save.Show(); } } + + private void trackBar1_Scroll(object sender, EventArgs e) + { + + } } }