Hi Leute,
Ich soll ein referat über GroupBox'n und Panel's machen, habe mir auch mal die Code's über MSDN angeschaut und mal selber programmiert, leider funktionieren der eine nicht und der andere ist mir etwas kompliziert. Liegt es daran, dass ich zuerst über die Toolbox generieren muss oder weshalb funktionier es nicht? Wäre auch klasse, wenn ihr mir die gekennzeichneten Stellen(???) erklären könntet, da ich die über msdn nicht verstehe...Neuling halt^^
GroupBox:
public void initializeMyGroupBox()
{
GroupBox GroupBox1 = new GroupBox();
RadioButton RadioButton1 = new RadioButton();
RadioButton Radiobutton2 = new RadioButton();
GroupBox1.Flatstyle = FlatStyle.Flat; //???
GroupBox1.Add.Controls(RadioButton1);
GroupBox1.Add.Controls(Radiobutton2);
Controls.Add(GroupBox1);
Panel:
public void CreateMyPanel()
{
Panel panel1 = new Panel();
TextBox textBox1 = new TextBox();
Label label1 = new Label();
panel1.Location = new Point(56,72);
panel1.Size = new Size(264, 152);
panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; //???
label1.Location = new Point(16,16);
label1.Text = "label1";
label1.Size = new Size(104, 16);
textBox1.Location = new Point(16,32);
textBox1.Text = "";
textBox1.Size = new Size(152, 20);
this.Controls.Add(panel1); //???
panel1.Controls.Add(label1);
panel1.Controls.Add(textBox1);
}
Ich bedanke mich schonmal im voraus und freue mich auf eure Antworten^^...
Mit freundlichen Grüßen
Siva
Ich soll ein referat über GroupBox'n und Panel's machen, habe mir auch mal die Code's über MSDN angeschaut und mal selber programmiert, leider funktionieren der eine nicht und der andere ist mir etwas kompliziert. Liegt es daran, dass ich zuerst über die Toolbox generieren muss oder weshalb funktionier es nicht? Wäre auch klasse, wenn ihr mir die gekennzeichneten Stellen(???) erklären könntet, da ich die über msdn nicht verstehe...Neuling halt^^
GroupBox:
public void initializeMyGroupBox()
{
GroupBox GroupBox1 = new GroupBox();
RadioButton RadioButton1 = new RadioButton();
RadioButton Radiobutton2 = new RadioButton();
GroupBox1.Flatstyle = FlatStyle.Flat; //???
GroupBox1.Add.Controls(RadioButton1);
GroupBox1.Add.Controls(Radiobutton2);
Controls.Add(GroupBox1);
Panel:
public void CreateMyPanel()
{
Panel panel1 = new Panel();
TextBox textBox1 = new TextBox();
Label label1 = new Label();
panel1.Location = new Point(56,72);
panel1.Size = new Size(264, 152);
panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; //???
label1.Location = new Point(16,16);
label1.Text = "label1";
label1.Size = new Size(104, 16);
textBox1.Location = new Point(16,32);
textBox1.Text = "";
textBox1.Size = new Size(152, 20);
this.Controls.Add(panel1); //???
panel1.Controls.Add(label1);
panel1.Controls.Add(textBox1);
}
Ich bedanke mich schonmal im voraus und freue mich auf eure Antworten^^...
Mit freundlichen Grüßen
Siva