本文整理汇总了C#中ObservableCollection.Refill方法的典型用法代码示例。如果您正苦于以下问题:C# ObservableCollection.Refill方法的具体用法?C# ObservableCollection.Refill怎么用?C# ObservableCollection.Refill使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ObservableCollection
的用法示例。
在下文中一共展示了ObservableCollection.Refill方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FillingCollection_FillWithNullIEnumerable_NullReferenceException
public void FillingCollection_FillWithNullIEnumerable_NullReferenceException()
{
int[] array = null;
var observableCollection = new ObservableCollection<int>();
Assert.Throws<ArgumentNullException>(() => observableCollection.Refill(array), "Second argument");
}
示例2: GetChildrenAsObservable
private ObservableCollection<LightPatientDto> GetChildrenAsObservable(Patient patient)
{
var children = this.GetChildren(patient);
var childrenDto = Mapper.Map<IList<Patient>, IList<LightPatientDto>>(children);
var result = new ObservableCollection<LightPatientDto>();
result.Refill(childrenDto);
return result;
}
示例3: RefillTheCollection_RefillsWithNullValue_ThrowsErgumentNullException
public void RefillTheCollection_RefillsWithNullValue_ThrowsErgumentNullException()
{
ObservableCollection<object> list = new ObservableCollection<object>();
list.Refill(null);
}