I'm trying to play a little bit with Windows Forms, to make a little application.
But here's how I'd like it to be:
I've made a little link named "SettingsLi nk" (file is named SettingsWindow. cs" (Type: LabelLink).
The text on the link is "Settings".
How can I make the window popup?
I've tried several things, but nothing has helped so far.
Current code from the link:
But here's how I'd like it to be:
I've made a little link named "SettingsLi nk" (file is named SettingsWindow. cs" (Type: LabelLink).
The text on the link is "Settings".
How can I make the window popup?
I've tried several things, but nothing has helped so far.
Current code from the link:
Code:
// SettingsLink
//
this.SettingsLink.AutoSize = true;
this.SettingsLink.Location = new System.Drawing.Point(1066, 85);
this.SettingsLink.Name = "SettingsLink";
this.SettingsLink.Size = new System.Drawing.Size(45, 13);
this.SettingsLink.TabIndex = 2;
this.SettingsLink.TabStop = true;
this.SettingsLink.Text = "Settings";
Comment