BitmapEffectCollection 构造函数

定义

注意:此 API 现在已过时。 未过时的替代项为 Effect。 初始化 BitmapEffectCollection 类的新实例。

重载

BitmapEffectCollection()

注意:此 API 现在已过时。 未过时的替代项为 Effect。 初始化 BitmapEffectCollection 类的新实例。

BitmapEffectCollection(IEnumerable<BitmapEffect>)

注意:此 API 现在已过时。 未过时的替代项为 Effect。 使用给定的集合初始化 BitmapEffectCollection 类的新实例。

BitmapEffectCollection(Int32)

注意:此 API 现在已过时。 未过时的替代项为 Effect。 使用指定的容量或集合最初可存储的 BitmapEffectCollection 对象数来初始化 BitmapEffect 类的一个新实例。

BitmapEffectCollection()

注意:此 API 现在已过时。 未过时的替代项为 Effect。 初始化 BitmapEffectCollection 类的新实例。

public:
 BitmapEffectCollection();
public BitmapEffectCollection ();
Public Sub New ()

适用于

BitmapEffectCollection(IEnumerable<BitmapEffect>)

注意:此 API 现在已过时。 未过时的替代项为 Effect。 使用给定的集合初始化 BitmapEffectCollection 类的新实例。

public:
 BitmapEffectCollection(System::Collections::Generic::IEnumerable<System::Windows::Media::Effects::BitmapEffect ^> ^ collection);
public BitmapEffectCollection (System.Collections.Generic.IEnumerable<System.Windows.Media.Effects.BitmapEffect> collection);
new System.Windows.Media.Effects.BitmapEffectCollection : seq<System.Windows.Media.Effects.BitmapEffect> -> System.Windows.Media.Effects.BitmapEffectCollection
Public Sub New (collection As IEnumerable(Of BitmapEffect))

参数

collection
IEnumerable<BitmapEffect>

用于初始化的集合。

适用于

BitmapEffectCollection(Int32)

注意:此 API 现在已过时。 未过时的替代项为 Effect。 使用指定的容量或集合最初可存储的 BitmapEffectCollection 对象数来初始化 BitmapEffect 类的一个新实例。

public:
 BitmapEffectCollection(int capacity);
public BitmapEffectCollection (int capacity);
new System.Windows.Media.Effects.BitmapEffectCollection : int -> System.Windows.Media.Effects.BitmapEffectCollection
Public Sub New (capacity As Integer)

参数

capacity
Int32

集合的初始容量。

适用于