6
Answers

Gui help needed

Prime b

Prime b

11y
1.8k
1
Ok, this is the problem


Using the MenuStripDemo project in the Chapter.12 folder
of your downloadable student fi les (see Figure 12-33), add
appropriate functionality to the currently unprogrammed
menu options (Small in the Font menu and the three options
in the Color menu). Add at least three other menu options to
the program, either vertically, horizontally, or both.


I added all the code required to make font to small,large, change color to whatever is required . Now I am adding extra three things. Well i added change font to bold and italic, added extra font to make font invisible( i just set the label visibility to false :P ).
Now I added extra tab(in the menu strip) called Add in there i want to add Label.

this is the link to the program
http://www.4shared.com/rar/P93Zs17b/MenuStripDemo.html?refurl=d1url


I stuck on this part, where the user would click on Label and it should add labels on the form.


        private void labelToolStripMenuItem_Click(object sender, EventArgs e)
        {
            int temp = 0;
            while (1 != temp)
            {
                Label label = new Label();
                Label.
            }



Answers (6)