点击或拖拽改变大小

MobileComponentCollectionAddRange 方法

将控件对象数组添加到集合中。

命名空间:  Smobiler.Core.Controls
程序集:  Smobiler.Core (在 Smobiler.Core.dll 中) 版本:6.0.641.16928
语法
public void AddRange(
	MobileComponent[] ctls
)

参数

ctls
类型:Smobiler.Core.ControlsMobileComponent
要添加到集合的 Control 对象的数组。
备注
将 controls 数组中包含的 Control 对象追加到集合的结尾。 可以使用 AddRange 方法将一组 Control 对象迅速添加到集合,而不是通过使用 Add 方法将每个 Control 手动添加到集合中。 若要移除以前添加的 Control,请使用 Remove、RemoveAt 或 Clear 方法。
参见