Skip to content

Commit

Permalink
Made it unable to resize the application form
Browse files Browse the repository at this point in the history
  • Loading branch information
fgRuslan committed Aug 26, 2019
1 parent 095c213 commit 6c92946
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ private void Form1_Load(object sender, EventArgs e)
tagsBox.GotFocus += new EventHandler(this.TagsGotFocus);
tagsBox.LostFocus += new EventHandler(this.TagsLostFocus);
label4.Text = "";
this.MaximizeBox = false;
this.FormBorderStyle = FormBorderStyle.FixedSingle;
}

public void TagsGotFocus(object sender, EventArgs e)
Expand Down

0 comments on commit 6c92946

Please sign in to comment.