在下拉按钮的子项列表指定索引处插入指定类型的子项。

命名空间:  SuperMap.Desktop
程序集:  SuperMap.Desktop.Core (in SuperMap.Desktop.Core)
版本: dll

语法

C#
IBaseItem InsertNew(
	int index,
	ButtonDropDownItemType type
)

参数

index
Type: System..::.Int32
插入位置索引
type
Type: SuperMap.Desktop..::.ButtonDropDownItemType
待插入子项类型

返回值

插入成功的子项对象

示例

CopyC#
// 示例如何在已有的下拉按钮中,添加一个子项
// 获取已经存在的一个下拉按钮
IButtonDropDown buttonDropdown = Application.ActiveApplication.MainForm.RibbonManager[typeof(_CtrlActionBrowserLayout)] as IButtonDropDown;
// 创建新的子项
IButton item = buttonDropdown.Items.AddNew(ButtonDropDownItemType.Button) as IButton;
// 创建新的子项
IButton item = buttonDropdown.Items.InsertNew(0, ButtonDropDownItemType.Button) as IButton;
// 修改子项内容
item.Text = "新增测试按钮";
item.Image = Bitmap.FromFile(@"C:\Example.png") as Bitmap;

请参见