部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
警告
Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202
public ref class DataBindingCollectionConverter : System::ComponentModel::TypeConverter
public class DataBindingCollectionConverter : System.ComponentModel.TypeConverter
[System.Obsolete("Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202")]
public class DataBindingCollectionConverter : System.ComponentModel.TypeConverter
type DataBindingCollectionConverter = class
inherit TypeConverter
[<System.Obsolete("Use of this type is not recommended because DataBindings editing is launched via a DesignerActionList instead of the property grid. http://go.microsoft.com/fwlink/?linkid=14202")>]
type DataBindingCollectionConverter = class
inherit TypeConverter
Public Class DataBindingCollectionConverter
Inherits TypeConverter
// Associates the DataBindingCollectionConverter
// with a DataBindingCollection property.
public:
[TypeConverterAttribute(DataBindingCollectionConverter::typeid)]
property DataBindingCollection^ dataBindings
{
DataBindingCollection^ get()
{
return bindings;
}
void set( DataBindingCollection^ value )
{
bindings = value;
}
}
private:
DataBindingCollection^ bindings;
// Associates the DataBindingCollectionConverter
// with a DataBindingCollection property.
[TypeConverterAttribute(typeof(DataBindingCollectionConverter))]
public DataBindingCollection dataBindings
{
get
{
return bindings;
}
set
{
bindings = value;
}
}
private DataBindingCollection bindings;
' Associates the DataBindingCollectionConverter
' with a DataBindingCollection property.
<TypeConverterAttribute(GetType(DataBindingCollectionConverter))> _
Public Property dataBindings() As DataBindingCollection
Get
Return bindings
End Get
Set
bindings = value
End Set
End Property
Private bindings As DataBindingCollection