Skip to content

Commit

Permalink
界面没有垂直对齐
Browse files Browse the repository at this point in the history
  • Loading branch information
lindexi committed Jun 18, 2024
1 parent c2e19f7 commit 95faf9c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ void CreateD2D()
{
var drawingInfo = ellipseInfoList[i];
var vector2 = drawingInfo.Offset;
vector2.X += 10;// Random.Shared.Next(200) - 100;
vector2.Y += 10;// Random.Shared.Next(200) - 100;
vector2.X += Random.Shared.Next(200) - 100;
vector2.Y += Random.Shared.Next(200) - 100;
while (vector2.X < 100 || vector2.X > clientSize.Width - 100)
{
Expand Down

0 comments on commit 95faf9c

Please sign in to comment.