BindingList コンストラクタ ()
アセンブリ: System (system.dll 内)



新しい BindingList を構築する方法を次のコード例に示します。詳細については、BindingList クラスの概要のトピックを参照してください。
' Declare a new BindingListOfT with the Part business object. Private WithEvents listOfParts As BindingList(Of Part) Private Sub InitializeListOfParts() ' Create the new BindingList of Part type. listOfParts = New BindingList(Of Part) ' Allow new parts to be added, but not removed once committed. listOfParts.AllowNew = True listOfParts.AllowRemove = False ' Raise ListChanged events when new parts are added. listOfParts.RaiseListChangedEvents = True ' Do not allow parts to be edited. listOfParts.AllowEdit = False ' Add a couple of parts to the list. listOfParts.Add(New Part("Widget", 1234)) listOfParts.Add(New Part("Gadget", 5647)) End Sub

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


BindingList コンストラクタ

名前 | 説明 |
---|---|
BindingList () | 既定値を使用して BindingList クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |
BindingList (ジェネリック IList) | 指定したリストを使用して、BindingList クラスの新しいインスタンスを初期化します。 .NET Compact Framework によってサポートされています。 |

BindingList コンストラクタ (ジェネリック IList)
アセンブリ: System (system.dll 内)



Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からBindingList コンストラクタ ()を検索する場合は、下記のリンクをクリックしてください。

- BindingList コンストラクタ ()のページへのリンク