The window is now not sizable, and has no maximize button. This is a separate commit so that this can be chosen later

This commit is contained in:
Konstantinos Vaggelakos 2011-11-28 00:53:52 +01:00
parent 75506e7b30
commit 194bc91585

View file

@ -437,6 +437,8 @@ namespace SparkleShare {
this.ClientSize = new System.Drawing.Size (664, 396); this.ClientSize = new System.Drawing.Size (664, 396);
this.Controls.Add (this.tabControl); this.Controls.Add (this.tabControl);
this.Controls.Add (this.pictureBox); this.Controls.Add (this.pictureBox);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "SparkleSetup"; this.Name = "SparkleSetup";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "SparkleShare Setup"; this.Text = "SparkleShare Setup";