Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用带有代码的 Spreadsheetgear 创建工作簿视图。我不想在表单上使用 workbookview 控件,我想动态创建它,然后通过代码将它放在选项卡控件上。
您创建一个工作簿视图对象,然后将其添加到选项卡页控件。
SpreadsheetGear.Windows.Forms.WorkbookView workbookView1 = new SpreadsheetGear.Windows.Forms.WorkbookView(); tabControl1.TabPages[0].Controls.Add(workbookView1);