本文整理匯總了C#中System.Windows.Forms.Binding.SetListManager方法的典型用法代碼示例。如果您正苦於以下問題:C# Binding.SetListManager方法的具體用法?C# Binding.SetListManager怎麽用?C# Binding.SetListManager使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類System.Windows.Forms.Binding
的用法示例。
在下文中一共展示了Binding.SetListManager方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: RemoveCore
protected override void RemoveCore(Binding dataBinding)
{
if (dataBinding.BindingManagerBase != this.bindingManagerBase)
{
throw new ArgumentException(System.Windows.Forms.SR.GetString("BindingsCollectionForeign"));
}
dataBinding.SetListManager(null);
base.RemoveCore(dataBinding);
}
開發者ID:pritesh-mandowara-sp,項目名稱:DecompliedDotNetLibraries,代碼行數:9,代碼來源:ListManagerBindingsCollection.cs
示例2: AddCore
protected override void AddCore(Binding dataBinding) {
if (dataBinding == null)
throw new ArgumentNullException("dataBinding");
if (dataBinding.BindingManagerBase == bindingManagerBase)
throw new ArgumentException(SR.GetString(SR.BindingsCollectionAdd1), "dataBinding");
if (dataBinding.BindingManagerBase != null)
throw new ArgumentException(SR.GetString(SR.BindingsCollectionAdd2), "dataBinding");
// important to set prop first for error checking.
dataBinding.SetListManager(bindingManagerBase);
base.AddCore(dataBinding);
}
示例3: AddCore
protected override void AddCore(Binding dataBinding)
{
if (dataBinding == null)
{
throw new ArgumentNullException("dataBinding");
}
if (dataBinding.BindingManagerBase == this.bindingManagerBase)
{
throw new ArgumentException(System.Windows.Forms.SR.GetString("BindingsCollectionAdd1"), "dataBinding");
}
if (dataBinding.BindingManagerBase != null)
{
throw new ArgumentException(System.Windows.Forms.SR.GetString("BindingsCollectionAdd2"), "dataBinding");
}
dataBinding.SetListManager(this.bindingManagerBase);
base.AddCore(dataBinding);
}
開發者ID:pritesh-mandowara-sp,項目名稱:DecompliedDotNetLibraries,代碼行數:17,代碼來源:ListManagerBindingsCollection.cs
示例4: RemoveCore
protected override void RemoveCore(Binding dataBinding) {
if (dataBinding.BindingManagerBase != bindingManagerBase)
throw new ArgumentException(SR.GetString(SR.BindingsCollectionForeign));
dataBinding.SetListManager(null);
base.RemoveCore(dataBinding);
}