我有一个应用程序,我需要将数据库中的数据填充到 4 个标签上,我希望这些标签出现在随机位置 x 但在以下位置 x:79、199、437、319。
我尝试使用Random
该类,但它偶尔会返回相同的位置。请问有人有解决方案吗?每次运行应用程序时,我希望下面的 answer1 - answer 4 随机播放位置。
answer1.Location = new Point(79, 60);
answer2.Location = new Point(199, 60);
answer4.Location = new Point(437, 60);
answer3.Location = new Point(319, 60);