4 instantiations of PropertyGrid
System.Web.Mobile (2)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
140this._pgProperties = new System.Windows.Forms.PropertyGrid();
UI\MobileControls\Design\StylesEditorDialog.cs (1)
164_propertyBrowser = new PropertyGrid();
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
142this.propertiesGrid = new System.Windows.Forms.PropertyGrid();
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
144this.genericParametersPropertyGrid = new System.Windows.Forms.PropertyGrid();
54 references to PropertyGrid
System.Web.Mobile (2)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
46private System.Windows.Forms.PropertyGrid _pgProperties;
UI\MobileControls\Design\StylesEditorDialog.cs (1)
62private PropertyGrid _propertyBrowser;
System.Windows.Forms (50)
winforms\Managed\System\WinForms\PropertyGrid.cs (19)
4561return new Bitmap(typeof(PropertyGrid), "PBAlpha.bmp"); 4576return new Bitmap(typeof(PropertyGrid), "PBCatego.bmp"); 4591return new Bitmap(typeof(PropertyGrid), "PBPPage.bmp"); 5022protected PropertyGrid ownerGrid; 5028public SnappableControl(PropertyGrid ownerGrid) { 5088private PropertyGrid owner; 5090internal PropertyTabCollection(PropertyGrid owner) { 5231PropertyGrid owner; 5233public PropertyGridServiceProvider(PropertyGrid owner) { 5259public static SizeF MeasureText(PropertyGrid owner, Graphics g, string text, Font font ){ 5263public static SizeF MeasureText(PropertyGrid owner, Graphics g, string text, Font font, int width ){ 5267public static SizeF MeasureTextSimple(PropertyGrid owner, Graphics g, string text, Font font, SizeF size ){ 5279public static SizeF MeasureText(PropertyGrid owner, Graphics g, string text, Font font, SizeF size ){ 5417private PropertyGrid _owningPropertyGrid; 5423public PropertyGridAccessibleObject(PropertyGrid owningPropertyGrid) : base(owningPropertyGrid) { 5614private PropertyGrid _parentPropertyGrid; 5620public PropertyGridToolStrip(PropertyGrid parentPropertyGrid) { 5649private PropertyGrid _parentPropertyGrid; 5656public PropertyGridToolStripAccessibleObject(PropertyGridToolStrip owningPropertyGridToolStrip, PropertyGrid parentPropertyGrid) : base(owningPropertyGridToolStrip) {
winforms\Managed\System\WinForms\PropertyGridInternal\ArrayElementGridEntry.cs (1)
28public ArrayElementGridEntry(PropertyGrid ownerGrid, GridEntry peParent, int index)
winforms\Managed\System\WinForms\PropertyGridInternal\CategoryGridEntry.cs (1)
35public CategoryGridEntry(PropertyGrid ownerGrid, GridEntry peParent,string name, GridEntry[] childGridEntries)
winforms\Managed\System\WinForms\PropertyGridInternal\DocComment.cs (5)
23internal class DocComment : PropertyGrid.SnappableControl { 42internal DocComment(PropertyGrid owner) : base(owner) { 91SizeF sizef = PropertyGrid.MeasureTextHelper.MeasureText( this.ownerGrid, g, m_labelTitle.Text, Font, width); 250private PropertyGrid _parentPropertyGrid; 257public DocCommentAccessibleObject(DocComment owningDocComment, PropertyGrid parentPropertyGrid) : base(owningDocComment) {
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (5)
124protected PropertyGrid ownerGrid; 142protected GridEntry(PropertyGrid owner, GridEntry peParent) { 813public PropertyGrid OwnerGrid{ 1406SizeF textSize = PropertyGrid.MeasureTextHelper.MeasureText( this.ownerGrid, g, labelText, f); 1941TextRenderer.DrawText( g, strLabel, font, textRect, textColor, PropertyGrid.MeasureTextHelper.GetTextRendererFlags() );
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (3)
49private PropertyGrid ownerGrid; 76public GridErrorDlg(PropertyGrid owner) { 322SizeF sizef = PropertyGrid.MeasureTextHelper.MeasureText( this.ownerGrid, g, detailsBtn.Text, detailsBtn.Font);
winforms\Managed\System\WinForms\PropertyGridInternal\HotCommands.cs (4)
22internal class HotCommands : PropertyGrid.SnappableControl { 34internal HotCommands(PropertyGrid owner) : base(owner) { 237private PropertyGrid _parentPropertyGrid; 244public HotCommandsAccessibleObject(HotCommands owningHotCommands, PropertyGrid parentPropertyGrid) : base(owningHotCommands) {
winforms\Managed\System\WinForms\PropertyGridInternal\ImmutablePropertyDescriptorGridEntry.cs (1)
33internal ImmutablePropertyDescriptorGridEntry(PropertyGrid ownerGrid, GridEntry peParent, PropertyDescriptor propInfo, bool hide)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiPropertyDescriptorGridEntry.cs (1)
26public MultiPropertyDescriptorGridEntry(PropertyGrid ownerGrid, GridEntry peParent, object[] objectArray, PropertyDescriptor[] propInfo, bool hide)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyDescriptorGridEntry.cs (2)
63internal PropertyDescriptorGridEntry(PropertyGrid ownerGrid, GridEntry peParent, bool hide) 72internal PropertyDescriptorGridEntry(PropertyGrid ownerGrid, GridEntry peParent, PropertyDescriptor propInfo, bool hide)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (8)
55private PropertyGrid ownerGrid; // the properties window host. 178public PropertyGridView(IServiceProvider serviceProvider, PropertyGrid propertyGrid) 326Icon icon = new Icon(BitmapSelector.GetResourceStream(typeof(PropertyGrid), iconName), desiredSize); 531public PropertyGrid OwnerGrid{ 1255SizeF sizeF = PropertyGrid.MeasureTextHelper.MeasureText(this.ownerGrid, g, gridEntry.PropertyLabel, Font); 6014SizeF sizef = PropertyGrid.MeasureTextHelper.MeasureText(this.gridView.ownerGrid, g, editor.Text, gridView.GetBaseFont()); 7320private PropertyGrid _parentPropertyGrid; 7326public PropertyGridViewAccessibleObject(PropertyGridView owner, PropertyGrid parentPropertyGrid) : base(owner) {
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
40private System.Windows.Forms.PropertyGrid propertiesGrid;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
56private PropertyGrid genericParametersPropertyGrid;