source code
Is it really that important to know how to write the source code???, or i could just use the toolbox while creating a GUI
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Abhay ShankerPosted Mar 8, 2014, 8:50 PM
Deepak Kumar ChoudharyPosted Mar 8, 2014, 5:58 AM
if you have to write source code so you just create a object of any toolbox control
i.e
public Form1()
{
InitializeComponent();
Button btn = new Button();
btn.Text = "Hello";
btn.BackColor=System.Drawing.Color.Blue;
}
Note: if you know the all source code of all the Gui application design just right click on InitializeComponent() method and select go to definition option