2 types derived from DesignObjectWrapper
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (1)
744sealed class DesignTimeArgument : DesignObjectWrapper
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (1)
979sealed class DesignTimeVariable : DesignObjectWrapper
36 references to DesignObjectWrapper
System.Data (36)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (21)
303if (!DesignObjectWrapper.TypePropertyCollection.ContainsKey(type)) 329for (int i = 0; i < DesignObjectWrapper.DefaultProperties.Length; ++i) 331descriptors.Add(this.ConstructDefaultPropertyPropertyDescriptor(DesignObjectWrapper.DefaultProperties[i])); 333DesignObjectWrapper.TypePropertyCollection[type] = new PropertyDescriptorCollection(descriptors.ToArray(), true); 336return DesignObjectWrapper.TypePropertyCollection[type]; 572if (DesignObjectWrapper.TypePropertyCollection.ContainsKey(type)) 574PropertyDescriptorCollection properties = DesignObjectWrapper.TypePropertyCollection[type]; 605string.Format(CultureInfo.InvariantCulture, "{0}{1}", this.descriptorData.PropertyName, DesignObjectWrapper.ValidationErrorSuffix) : 621DesignObjectWrapper instance = (DesignObjectWrapper)component; 637DesignObjectWrapper instance = (DesignObjectWrapper)component; 645DesignObjectWrapper instance = (DesignObjectWrapper)component; 682instance.RaisePropertyChangedEvent(DesignObjectWrapper.HasErrorsProperty); 693instance.RaisePropertyChangedEvent(DesignObjectWrapper.HasErrorsProperty); 715public Func<DesignObjectWrapper, object> PropertyGetter { get; set; } 716public Action<DesignObjectWrapper, object> PropertySetter { get; set; } 717public Func<DesignObjectWrapper, object, List<string>, bool> PropertyValidator { get; set; } 778var wrapper = (DesignObjectWrapper)content.ModelItem.GetCurrentValue();
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (4)
454var argument = (DesignObjectWrapper)cell.DataContext; 460var argument = (DesignObjectWrapper)cell.DataContext;
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (5)
1028DesignObjectWrapper designObjectWrapper = dataGrid.SelectedItems[0] as DesignObjectWrapper; 1512var entry = values.OfType<DesignObjectWrapper>().FirstOrDefault(); 1563Dispatcher.CurrentDispatcher.BeginInvoke(new Action<DesignObjectWrapper>((instance) =>
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (6)
511var variable = (DesignObjectWrapper)resolveParams.Cell.DataContext; 535var variable = (DesignObjectWrapper)cell.DataContext; 541var variable = (DesignObjectWrapper)cell.DataContext;