Skip to content

Commit

Permalink
Start and stop animate working successfully.
Browse files Browse the repository at this point in the history
  • Loading branch information
AccidentalCitizen committed Oct 3, 2023
1 parent b5093f3 commit f00933d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/TestApplication/Main.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions src/TestApplication/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ private void Main_Resize(object sender, EventArgs e)

private void Main_Load(object sender, EventArgs e)
{



this.DisplayBox.Image = new Bitmap(DisplayBox.Width, DisplayBox.Height);
InitializeAngleGrid();
pivotX = DisplayBox.Width / 2;
Expand All @@ -44,6 +41,7 @@ private void Main_Load(object sender, EventArgs e)

private void DisplayBox_Click(object sender, EventArgs e)
{

if (freezeFrame)
{
freezeFrame = false;
Expand Down Expand Up @@ -145,6 +143,11 @@ private void button2_Click(object sender, EventArgs e)
myTimer.Stop();
}

private void AnglePictureBox_Click(object sender, EventArgs e)
{

}

private void DisplayBox_MouseDown(object sender, MouseEventArgs e)
{

Expand Down

0 comments on commit f00933d

Please sign in to comment.