[C#] Tool for visual view of the forms
I had a C# project which has forms maded by code using SDL library.
Im not so C# experienced and i want to edit/change the x/y coordinats of the used images but i can't do it with the code so...
Is there any tool/addon/widget that can allow me to view the "Visual Form" generated by the C# code ? Thanks.
Re: [C#] Tool for visual view of the forms
Are you using C#? if so this belongs in the C# forum! If not please don't put the other language in the title.
Have you placed the images using code or by manually placing them in the project?
Re: [C#] Tool for visual view of the forms
Thread moved from 'C, C++' forum to the 'C#' forum
Re: [C#] Tool for visual view of the forms
Quote:
i can't do it with the code so...
Why not?
I might not have entirely understood the question that you are asking, however if you want to move an image (or PictureBox) then you can change the Position using the Location property.
Code:
PictureBox myPicture = new PictureBox();
myPicture.Location = new Point(20, 30);
The code above will set the location to:
X = 20px
Y = 30px