Skip to main content

How to Draw Home Design in C#

Source: How to Draw Home Design in C#

In this post I am going to put the code about how to design home architecture in C#. Using C#, you can do anything with simple codebase. Suppose you are an architecture or civil engineer and you need a software where you can put the size of each bedroom, drawing room, toilet, store room, kitchen, balcony, exit gate &  entrance gate details and you will get a full architecture of your home. I have built a simple architecture using C#. All fields are dynamic that can be change anytime. You can also print those architecture image. The image will look like this:

I used a simple rectangle method to build these architecture. 
  • Create a database in ms-access.
  • Store all information like width and length of bedroom, drawing room, toilet, store room, kitchen, balcony, exit gate &  entrance gate.
  • Get each room length and width and build a structure using C#
  • Now draw some architecture:
                     if (flat_type=="1BHK")
                        {
                            DrawRectangle(50, 50, exg_w, exg_h, "Entrance Gate");
                            DrawRectangle(50, 50, dr_bdh, dr_len, "Drawing Room");
                            --
                            --
                        }
                        else if (flat_type == "2BHK")
                        {
                            DrawRectangle(50, 50, r1_bdh, r1_len, "Bedroom");
                            DrawRectangle(50 + r1_bdh - exg_h - 10, 50 + r1_len, exg_h, exg_w, "gate");
                            --
                        }
                        else if (flat_type == "3BHK")
                        {
                            DrawRectangle(50, 50, r1_bdh, r1_len, "Bedroom");
                            DrawRectangle(50 + r1_bdh - exg_h - 10, 50 + r1_len, exg_h, exg_w, "gate");
                            --
                        }
For Printing we use this function:
private void PrintScreen()
        {
            Graphics mygraphics = this.CreateGraphics();
            Size s = this.Size;
            memoryImage = new Bitmap(s.Width, s.Height, mygraphics);
            Graphics memoryGraphics = Graphics.FromImage(memoryImage);
            IntPtr dc1 = mygraphics.GetHdc();
            IntPtr dc2 = memoryGraphics.GetHdc();
            BitBlt(dc2, 0, 0, this.ClientRectangle.Width, this.ClientRectangle.Height-50, dc1, 0, 0, 13369376);
            mygraphics.ReleaseHdc(dc1);
            memoryGraphics.ReleaseHdc(dc2);
        }

Full code is available on request at esoftcode@gmail.com

Comments

Popular posts from this blog

Reliance Jio free feature phone's revealed

Reference Link:  http://www.esoftcode.com/Blog_Details.Aspx?BlogID=39&Blog=Reliance%20Jio%20free%20feature%20phone%27s%20revealed Reliance Jio Phone Launched by Mukesh Ambani at Reliance AGM. This Jio phone features Free With Rs. 1,500 Deposit, Unlimited 4G Data & free calling. The handset, introduced as "India ka Smartphone" and launched at an price of  Rs. 0  (upfront deposit of Rs. 1,500 for this device is required). Jio users can get refund of their Rs. 1500 after 3 years if user will surrender this phone to Reliance. This is the crucial point for Jio users. I don't know what policy Reliance has taken to meet users requirement but this phone is no longer free for users. And in my opinion why this phone will available in free of cost. This should not be free. Mukesh Ambani should launched this phone at price of Rs. 1500 not for free. Do you know about some psychological effects. There are many effects like visual effects. Now co...

Why should one build his own server?

Having your own web server is more expensive than the cheap web hosting options. But here is the benefits why would you choose to run your own web server: What happens if one of the websites get hacked on the shared server? This probably wont be your fault but all it takes is one site to be exposed and the entire web server can be hacked and yes your site too. So, better option is to host your own server. How your custom email goes into peoples junk mail folders? This will be because your web server is blacklisted. You can solve it easily if you have own server. It offers a good learning to understand server setup and configuration. You have full control, you know every bit of hardware and software that has gone into it. When you need to reset the server or install anything you don’t need to contact tech support and wait for a response, you can simply pull the plug yourself. You will never get hacked because of another persons insecure website running on the same server. You ...

Schools is a Business Platform!

Reference Link:  http://www.esoftcode.com/Blog_Details.Aspx?Blogid=20042 I am using some google apps in my phone. While checking my emails I got an ads for school business. I was curious to know that, there is a school who is doing business not education. So, I have opened it. I saw many advantages to invest in  school business . I was surprised about the word used school business. Let me tell you the advantages are and what I have read in that ads. There is a school (not so famous) who is giving franchisee.  About School - Renowned for its best quality preschool education, school stands tall with banners of 1000+ schools at its back. Becoming a part of our family is a rewarding partnership with financial benefits. It is  investment-friendly  and you will get support at every step from the first day. You need to Invest upto  12-15 Lakhs 15+ Lakhs          Why to choose our school?  They are saying t...