|
アサインさん マサヤさん ありがとうございます。 お二人の意見を参考に下記のように コーディングしました。 思っていたことは出来たのですが、 直した方がいいところなどありましたら 教えたいただけたらうれしいです。
this.Id.Text = "0"; this.tData.Text = dt.Rows[0]["tDate"].ToString(); for (int i = 1; i < dt.Rows.Count; i++) { this.Id= new System.Windows.Forms.RadioButton(); this.Id.AutoSize = true; this.Id.Location = new System.Drawing.Point(5, 3+50*i); this.Id.Name = "Id"; this.Id.Size = new System.Drawing.Size(88, 16); this.Id.Text = i.ToString(); this.Id.UseVisualStyleBackColor = true;
this.tData= new System.Windows.Forms.Label(); this.tData.AutoSize = true; this.tData.Location = new System.Drawing.Point(121, 5+50*i); this.tData.Name = "tData"; this.tData.Size = new System.Drawing.Size(35, 12); this.tData.Text = dt.Rows[i]["tData"].ToString();
this.label10 = new System.Windows.Forms.Label(); this.label10.AutoSize = true; this.label10.Location = new System.Drawing.Point(227, 5+50*i); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(41, 12); this.label10.TabIndex = 12; this.label10.Text = "日付";
this.panel1.Controls.Add(this.Id); this.panel1.Controls.Add(this.tData); this.panel1.Controls.Add(this.label10); }
|