Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Hello!
I wish make program, which will display graphic model (furniture table) and on the background will be image - interior room. And below must be another image - parquet.
At right side form will be buttons by clicking on that changes parquet and background room.
My question is what elements control i must use, and how maje it right?
Posted
Comments
[no name] 21-Apr-13 16:34pm    
If you have to ask what control you would use to put a button on a form then you seriously need to get a basic book on programming and work through it, or find a basic tutorial, or take a class.
Sergey Alexandrovich Kryukov 21-Apr-13 20:02pm    
Agree with ThePhantomUpvoter. The knowledge of controls won't help to approach this problem. If would be a waste of time to discuss those controls here.
—SA
[no name] 22-Apr-13 6:49am    
My question was not about controls, i wanted get advise, what better use, becouse there are PictureBox, ImageList.
[no name] 22-Apr-13 8:10am    
"My question is what elements control i must use" that is exactly what you are asking here. If you are looking for advice, this is the wrong forum for that. This is the forum for questions and answers. If you want to have a discussion then you need to go to the discussion forums. And judging by the multitude simple basic questions that you do ask, you would still benefit greatly from a book, tutorials, classes instead of trying to learn how to program one question at a time.

1 solution

What you need is the InteriorDesign control pack from InteriorControls.com

This control pack comes with a whole bunch of stuff that will save you literally hours of work,

For example:

ICRoom room - new ICRoom;
room.Add(new ICFloor(FloorType.Carpet, ICColor peach);
room.Add(new ICTable(TableType.Coffe, ICWoodType.Teak);
...
room.Render();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900