37 references to PropertySort
System.Web.Mobile (2)
UI\MobileControls\Design\PropertyOverridesDialog.cs (1)
169
this._pgProperties.PropertySort = System.Windows.Forms.
PropertySort
.Alphabetical;
UI\MobileControls\Design\StylesEditorDialog.cs (1)
298
_propertyBrowser.PropertySort =
PropertySort
.Alphabetical;
System.Windows.Forms (33)
winforms\Managed\System\WinForms\PropertyGrid.cs (21)
69
private
PropertySort
propertySortValue;
274
this.PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
1069
DefaultValue(
PropertySort
.CategorizedAlphabetical),
1072
public
PropertySort
PropertySort {
1078
if (!ClientUtils.IsEnumValid(value, (int)value, (int)
PropertySort
.NoSort, (int)
PropertySort
.CategorizedAlphabetical)){
1079
throw new InvalidEnumArgumentException("value", (int)value, typeof(
PropertySort
));
1083
if ((value &
PropertySort
.Categorized) != 0) {
1086
else if ((value &
PropertySort
.Alphabetical) != 0) {
1475
return (PropertySort &
PropertySort
.Categorized) != 0;
2685
this.PropertySort =
PropertySort
.Alphabetical;
2688
this.PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
2725
this.PropertySort =
PropertySort
.Categorized |
PropertySort
.Alphabetical;
3499
propertySortValue =
PropertySort
.Alphabetical;
3502
propertySortValue =
PropertySort
.Alphabetical |
PropertySort
.Categorized;
3505
propertySortValue =
PropertySort
.NoSort;
4227
optRoot.SetValue("PbrsAlpha", (this.PropertySort ==
PropertySort
.Alphabetical ? "1" : "0"));
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (3)
119
protected
PropertySort
PropertySort;
1140
internal static IRootGridEntry Create(PropertyGridView view, object[] rgobjs, IServiceProvider baseProvider, IDesignerHost currentHost, PropertyTab tab,
PropertySort
initialSortType) {
1573
if ((this.PropertySort &
PropertySort
.Alphabetical) != 0)
winforms\Managed\System\WinForms\PropertyGridInternal\MultiSelectRootGridEntry.cs (3)
30
internal MultiSelectRootGridEntry(PropertyGridView view, object obj, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab,
PropertySort
sortType)
88
public static MultiPropertyDescriptorGridEntry[] GetMergedProperties(object[] rgobjs, GridEntry parentEntry,
PropertySort
sort, PropertyTab tab) {
95
if((sort &
PropertySort
.Alphabetical) != 0) {
winforms\Managed\System\WinForms\PropertyGridInternal\SingleSelectRootGridEntry.cs (6)
42
internal SingleSelectRootGridEntry(PropertyGridView gridEntryHost, object value, GridEntry parent, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab,
PropertySort
sortType)
62
internal SingleSelectRootGridEntry(PropertyGridView view, object value, IServiceProvider baseProvider, IDesignerHost host, PropertyTab tab,
PropertySort
sortType) : this(view, value,null, baseProvider, host, tab, sortType) {
281
if (((this.PropertySort &=
PropertySort
.Categorized) !=0) != fCategories) {
284
this.PropertySort |=
PropertySort
.Categorized;
287
this.PropertySort &= ~
PropertySort
.Categorized;
304
if ((this.PropertySort &
PropertySort
.Categorized) != 0) {
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
364
this.propertiesGrid.PropertySort =
PropertySort
.Categorized;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (1)
252
this.genericParametersPropertyGrid.PropertySort = System.Windows.Forms.
PropertySort
.Categorized;