Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 2 additions & 9 deletions BlackScholesModel/Form1.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;

Expand All @@ -25,13 +18,13 @@ public partial class Form1 : Form
public Form1()
{
InitializeComponent();
StopformResizing();
StopFormResizing();
this.AdditemtoCombobox();
FillDefaultperiod();

}

private void StopformResizing()
private void StopFormResizing()
{
this.MaximizeBox = false;
this.FormBorderStyle = FormBorderStyle.FixedSingle;
Expand Down