Microsoft.Office.Interop.Excel将单选按钮添加到工作表

本文关键字:添加 工作 单选按钮 Office Interop Excel Microsoft | 更新日期: 2023-09-27 17:56:28

我一直在寻找有关如何以编程方式向 Excel 工作表添加单选按钮的示例,但无法获得直接答案。我尝试使用Microsoft.Office.Interop.Excel和Microsoft.Office.Tools.Excel,但都没有奏效。我正在开发的系统已经有Microsoft.Office.Interop.Excel作为参考,所以除非有人反对使用此程序集,否则这是我的偏好。

//propertyWorkSheet is a Microsoft.Office.Interop.Excel worksheet
Microsoft.Office.Tools.Excel.Application xlApp = new Excel.Application();
Microsoft.Office.Tools.Excel.Worksheet worksheet = (Microsoft.Office.Tools.Excel.Worksheet)propertyWorksheet;
Microsoft.Office.Tools.Excel.Range selection = worksheet.get_Range("A12:A12", "A12:A12");
Microsoft.Office.Tools.Excel.Controls.Button button = new Microsoft.Office.Tools.Excel.Controls.Button();
worksheet.Controls.AddControl(button, selection, "Button");

Microsoft.Office.Interop.Excel将单选按钮添加到工作表

做了更多的挖掘,并用我的代码解决了这个问题,它奏效了。

    Microsoft.Office.Interop.Excel.Buttons buttons = propertyWorksheet.Buttons(System.Reflection.Missing.Value) as Microsoft.Office.Interop.Excel.Buttons;
    Microsoft.Office.Interop.Excel.Button button = buttons.Add(33, 33, 33, 33);
    button.Caption = "Test BUTTON";