Autodesk.Revit.UI.ComboBox 是 Revit API 中的一个类,用于创建带有下拉选择列表的组合框。
public ComboBox AddComboBox(UIControlledApplication application, string name, List<string> items)
application
: UIControlledApplication 类型,可从 Revit 的 UIApplication 对象中获取。name
: 字符串类型,指定创建的组合框的名称。items
: 列表类型,指定组合框下拉列表中的选项。ComboBox
: Autodesk.Revit.UI.ComboBox 类型,返回创建的组合框对象。List<string> items = new List<string>() { "Option 1", "Option 2", "Option 3" };
ComboBox comboBox = uiApp.CreateRibbonPanel("Test").AddComboBox(uiApp.ControlledApplication, "MyComboBox", items);
Current
属性进行读取或设置。Enabled
属性禁用或启用 ComboBox。要了解更多关于 Autodesk.Revit.UI.ComboBox 类的信息,请参阅 官方文档。