15 references to argumentWrapperCollection
System.Data (15)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (15)
79this.argumentWrapperCollection.CollectionChanged += OnArgumentWrapperCollectionChanged; 80this.argumentsDataGrid.ItemsSource = this.argumentWrapperCollection; 138this.argumentWrapperCollection.Add(wrapper); 174this.argumentWrapperCollection.All(p => { p.Dispose(); return true; }); 175this.argumentWrapperCollection.Clear(); 181this.argumentWrapperCollection.Add(new DesignTimeArgument(argument, this)); 184this.argumentsDataGrid.ItemsSource = this.argumentWrapperCollection; 363var wrapper = this.argumentWrapperCollection 369this.argumentWrapperCollection.Add(wrapper); 377var wrapper = this.argumentWrapperCollection.FirstOrDefault(p => ModelItem.Equals(p.ReflectedObject, argument)); 380this.argumentWrapperCollection.Remove(wrapper); 473DesignTimeArgument duplicate = this.argumentWrapperCollection.FirstOrDefault<DesignTimeArgument>(checkForDuplicates); 492IEnumerable<DesignTimeArgument> oldDuplicates = this.argumentWrapperCollection.Where<DesignTimeArgument>(checkForOldNameDuplicates); 628foreach (DesignTimeArgument designTimeArgument in this.argumentWrapperCollection) 632this.argumentWrapperCollection.Remove(designTimeArgument);