我在tabControl的兩個不同選項卡上有兩個面板。如何將相同的數據放在兩個面板中?
這是在表2的panel2
上繪製「數據可視化」的代碼。
chart2 = new Chart();
ChartArea chartArea2 = new ChartArea();
chart2.ChartAreas.Add(chartArea2);
series1.Points.Add(100);
chart2.Series.Add(series1);
chart2.Location = new System.Drawing.Point(0, 0);
chart2.Size = new System.Drawing.Size(panel2.Width, panel2.Height);
this.panel2.Controls.AddRange(new System.Windows.Forms.Control[] { this.chart2 });
我想在panel1
上畫相同的內容。 但它不能得出兩個面板的「數據可視化」,即使我用這個代碼:
chart2.Size = new System.Drawing.Size(panel1.Width, panel1.Height);
this.panel1.Controls.AddRange(new System.Windows.Forms.Control[] { this.chart2 });
我需要的是這樣的:
panel1 = panel2;
我想PANEL1成爲像是Panel2;
一個控件只能屬於一個容器控件。 –
謝謝,我該怎麼辦?你有什麼建議? –
我需要這樣的事情:panel1 = panel2; –