プロットの位置とサイズの修正に問題があるようです。これは正常ですか、それとも何か不足していますか?
私のコードは次のようになります。
GPlot.Model = new PlotModel();
GPlot.Dock = DockStyle.Fill;
GPlot.Enabled = true;
GPlot.Parent = Top_Tabs.TabPages[2]; // Putting it on a Tab
// At this point the Location And Size of GPlot, are those of the containing parent
GPlot.Location = new System.Drawing.Point(279, 224);
GPlot.Size = new System.Drawing.Size(10, 10);
// Last Two lines had no effect.
this.Matlab.Controls.Add(GPlot);
ありがとうございました