1 write to propertiesGrid
System.Workflow.ComponentModel (1)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
142this.propertiesGrid = new System.Windows.Forms.PropertyGrid();
17 references to propertiesGrid
System.Workflow.ComponentModel (17)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (17)
237this.themeConfigPanel.Controls.Add(this.propertiesGrid); 243this.propertiesGrid.CommandsVisibleIfAvailable = true; 244resources.ApplyResources(this.propertiesGrid, "propertiesGrid"); 245this.propertiesGrid.Name = "propertiesGrid"; 246this.propertiesGrid.ToolbarVisible = false; 364this.propertiesGrid.PropertySort = PropertySort.Categorized; 385this.themeConfigPanel.Controls.Remove(this.propertiesGrid); 389this.propertiesGrid.Dock = DockStyle.Fill; 390this.themeConfigPanel.Controls.AddRange(new Control[] { this.propertiesGrid, this.splitter, this.designerTreeView }); 397this.propertiesGrid.PropertyValueChanged += new PropertyValueChangedEventHandler(OnThemePropertyChanged); 549Point top = new Point(this.propertiesGrid.Right + (this.dummyPreviewPanel.Left - this.propertiesGrid.Right) / 2, this.themePanel.Margin.Top); 582this.propertiesGrid.SelectedObjects = selectedObjects; 618this.themePanel.Width = this.designerPreview.Right + ((this.designerPreview.Left - this.propertiesGrid.Right) / 2); 1183this.themeConfigDialog.propertiesGrid.PropertyValueChanged += new PropertyValueChangedEventHandler(OnThemePropertyChanged); 1193if (this.themeConfigDialog != null && this.themeConfigDialog.propertiesGrid != null) 1194this.themeConfigDialog.propertiesGrid.PropertyValueChanged -= new PropertyValueChangedEventHandler(OnThemePropertyChanged);