Fixed window resizing

This commit is contained in:
Ryan Ward 2021-01-22 16:07:36 -05:00
parent 8115db5dfa
commit b85152d20c
10 changed files with 24 additions and 3 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
~
build/
[Bb]in
[Dd]ebug*/
obj/
[Rr]elease*/
_ReSharper*/
[Tt]est[Rr]esult
[Bb]uild[Ll]og.*
*.swp

Binary file not shown.

View File

@ -236,7 +236,7 @@ namespace OnePass
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(380, 176); this.ClientSize = new System.Drawing.Size(380, 180);
this.Controls.Add(this.special); this.Controls.Add(this.special);
this.Controls.Add(this.numbers); this.Controls.Add(this.numbers);
this.Controls.Add(this.uAtoZ); this.Controls.Add(this.uAtoZ);
@ -254,8 +254,10 @@ namespace OnePass
this.Controls.Add(this.passCycle); this.Controls.Add(this.passCycle);
this.Controls.Add(this.Generate); this.Controls.Add(this.Generate);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximumSize = new System.Drawing.Size(396, 219);
this.MinimumSize = new System.Drawing.Size(396, 219);
this.Name = "Form1"; this.Name = "Form1";
this.Text = "OnePass V1.0"; this.Text = "OnePass V1.1";
((System.ComponentModel.ISupportInitialize)(this.passCycle)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.passCycle)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.passLength)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.passLength)).EndInit();
this.ResumeLayout(false); this.ResumeLayout(false);

View File

@ -152,6 +152,5 @@ namespace OnePass
Generate.Text = "Generate Password"; Generate.Text = "Generate Password";
Generate.Enabled = true; Generate.Enabled = true;
} }
} }
} }

Binary file not shown.

View File

@ -8,3 +8,13 @@ C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.csproj.GenerateR
C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.csproj.CoreCompileInputs.cache C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.csproj.CoreCompileInputs.cache
C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.exe C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.exe
C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.pdb C:\Users\rayam\source\repos\OnePass\OnePass\obj\Release\OnePass.pdb
F:\VSCWorkspace\OnePass\OnePass\bin\Release\OnePass.exe.config
F:\VSCWorkspace\OnePass\OnePass\bin\Release\OnePass.exe
F:\VSCWorkspace\OnePass\OnePass\bin\Release\OnePass.pdb
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csprojAssemblyReference.cache
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.Form1.resources
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.Properties.Resources.resources
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csproj.GenerateResource.cache
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.csproj.CoreCompileInputs.cache
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.exe
F:\VSCWorkspace\OnePass\OnePass\obj\Release\OnePass.pdb

Binary file not shown.

Binary file not shown.