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