Hello. I am programmatically displaying image thumbnails on a canvas and they all stack up in the upper left corner. I want to have them start in the upper left corner, but then reposition to a random location on the canvas. The problem I am running into is that I can get them to display somewhat randomly, but the group of images all seem to follow a diagonal path from the upper left down toward the lower right of the canvas. They appear to be positioned randomly within that straight diagonal path, but not randomly in relation to the entire canvas. Any help would be great. Here is some code:
[SIZE=2][/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Random[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] myRandom1 = [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]new[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Random[/COLOR][/SIZE][/COLOR][/SIZE]SIZE=2;
[/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Random[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] myRandom2 = [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]new[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Random[/COLOR][/SIZE][/COLOR][/SIZE]SIZE=2;
[/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] rand1 = myRandom1.Next(0,400);
[/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]int[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] rand2 = myRandom2.Next(0,400);
[/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]TranslateTransform[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] positionTransform = [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]new[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]TranslateTransform[/COLOR][/SIZE][/COLOR][/SIZE]SIZE=2;
[/SIZE][SIZE=2]positionTransform.X = rand1;
positionTransform.Y = rand2;
[/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]TransformGroup[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] transformGroup = [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]new[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]TransformGroup[/COLOR][/SIZE][/COLOR][/SIZE]SIZE=2;
transformGroup.Children.Add(positionTransform);
myImage.RenderTransformOrigin = [/SIZE][SIZE=2][COLOR=#0000ff][SIZE=2][COLOR=#0000ff]new[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] [/SIZE][SIZE=2][COLOR=#2b91af][SIZE=2][COLOR=#2b91af]Point[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2](0.5, 0.5);
myImage.RenderTransform = transformGroup;
[/SIZE]