sorting and PLF example 2 with modern form.

a lot of C# to be real!
This commit is contained in:
2025-10-23 11:46:36 +02:00
parent cb1b91ba0f
commit 85670b8a9e
16 changed files with 842 additions and 11 deletions

View File

@@ -283,7 +283,7 @@ namespace CubeCollisionSimulator
// Instructions
Label instructionsLabel = new Label
{
Text = "Instructions:\n\n<> Click and drag cubes\n<> Throw them by dragging\n<> Watch them collide!\n<> Adjust physics sliders\n<> Add more cubes\n<> Toggle sound on/off",
Text = "Instructions:\n\n<> Click and drag cubes\n<> Throw them by dragging\n<> Watch them collide!\n<> Adjust physics sliders\n<> Add more cubes\n<> Toggle sound on/off",
Location = new Point(10, yPos + 20),
Size = new Size(230, 200),
ForeColor = Color.LightGray
@@ -547,4 +547,5 @@ namespace CubeCollisionSimulator
Application.Run(new SimulatorForm());
}
}
}
}