142 references to GetValueOrDefault
System.Windows.Forms (142)
System\Windows\Forms\Control.cs (25)
477get => Properties.GetValueOrDefault<string>(s_accessibleDefaultActionProperty); 490get => Properties.GetValueOrDefault<string>(s_accessibleDescriptionProperty); 503get => Properties.GetValueOrDefault<string>(s_accessibleNameProperty); 515get => Properties.GetValueOrDefault(s_accessibleRoleProperty, AccessibleRole.Default); 653get => Properties.GetValueOrDefault(s_autoScrollOffsetProperty, Point.Empty); 840get => Properties.GetValueOrDefault<Image>(s_backgroundImageProperty); 870get => Properties.GetValueOrDefault(s_backgroundImageLayoutProperty, ImageLayout.Tile); 930Properties.GetValueOrDefault<ControlBindingsCollection>(s_bindingsProperty)?.Clear(); 1111int cacheTextCounter = Properties.GetValueOrDefault<int>(s_cacheTextCountProperty); 1124int cacheTextCounter = Properties.GetValueOrDefault<int>(s_cacheTextCountProperty); 1141_text = Properties.GetValueOrDefault<string?>(s_cacheTextFieldProperty); 1231get => Properties.GetValueOrDefault<ContextMenuStrip>(s_contextMenuStripProperty); 1481Cursor? localCursor = Properties.GetValueOrDefault<Cursor>(s_cursorProperty); 1812Font? previous = Properties.GetValueOrDefault<Font>(s_fontProperty); 1940fontHandle = Properties.GetValueOrDefault<FontHandleWrapper?>(s_fontHandleWrapperProperty); 2595string? name = Properties.GetValueOrDefault<string>(s_namePropertyProperty); 2665internal Color RawBackColor => Properties.GetValueOrDefault<Color>(s_backColorProperty); 2715get => Properties.GetValueOrDefault<Region>(s_regionProperty); 3109get => Properties.GetValueOrDefault<object>(s_userDataProperty); 4727Properties.GetValueOrDefault<ActiveXImpl>(s_activeXImplProperty)?.Dispose(); 6863Color backColor = Properties.GetValueOrDefault<Color>(s_backColorProperty); 6899if (Equals(Properties.GetValueOrDefault<object>(s_dataContextProperty), Parent?.DataContext)) 6996Color foreColor = Properties.GetValueOrDefault<Color>(s_foreColorProperty); 10433Color backColor = Properties.GetValueOrDefault<Color>(s_backColorProperty); 10453internal virtual bool ShouldSerializeForeColor() => !Properties.GetValueOrDefault<Color>(s_foreColorProperty).IsEmpty;
System\Windows\Forms\Control.Ime.cs (3)
110int val = Properties.GetValueOrDefault<int>(s_disableImeModeChangedCountProperty); 231get => Properties.GetValueOrDefault<int>(s_imeWmCharsToIgnoreProperty); 250get => Properties.GetValueOrDefault(s_lastCanEnableImeProperty, true);
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (6)
410get => Properties.GetValueOrDefault(s_propDrawMode, DrawMode.Normal); 436if (Properties.GetValueOrDefault<int>(s_propDropDownWidth) != value) 462if (Properties.GetValueOrDefault<int>(s_propDropDownHeight) != value) 599if (Properties.GetValueOrDefault<int>(s_propItemHeight) != value) 684return Properties.GetValueOrDefault<int>(s_propMaxLength); 1043get => Properties.GetValueOrDefault(s_propStyle, ComboBoxStyle.DropDown);
System\Windows\Forms\Controls\DataGridView\DataGridViewBand.cs (4)
58get => Properties.GetValueOrDefault<ContextMenuStrip>(s_propContextMenuStrip); 173get => Properties.GetValueOrDefault<int>(s_propDividerThickness); 262DataGridViewHeaderCell? priorValue = Properties.GetValueOrDefault<DataGridViewHeaderCell?>(s_propHeaderCell); 602get => Properties.GetValueOrDefault<object?>(s_propUserData);
System\Windows\Forms\Controls\DataGridView\DataGridViewButtonCell.cs (3)
40get => Properties.GetValueOrDefault(s_propButtonCellState, ButtonState.Normal); 60get => Properties.GetValueOrDefault(s_propButtonCellFlatStyle, FlatStyle.Standard); 91get => Properties.GetValueOrDefault<bool>(s_propButtonCellUseColumnTextForButtonValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (5)
116get => Properties.GetValueOrDefault<ContextMenuStrip>(s_propCellContextMenuStrip); 658get => Properties.GetValueOrDefault<object?>(s_propCellTag); 1542string? objErrorText = Properties.GetValueOrDefault<string>(s_propCellErrorText); 2432return Properties.GetValueOrDefault<object>(s_propCellValue); 2443return Properties.GetValueOrDefault<object>(s_propCellValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewCellStyle.cs (9)
69get => Properties.GetValueOrDefault(s_propAlignment, DataGridViewContentAlignment.NotSet); 109get => Properties.GetValueOrDefault<Color>(s_propBackColor); 145get => Properties.GetValueOrDefault<Font>(s_propFont); 193get => Properties.GetValueOrDefault<IFormatProvider>(s_propFormatProvider) ?? Globalization.CultureInfo.CurrentCulture; 263get => Properties.GetValueOrDefault<Padding>(s_propPadding); 309get => Properties.GetValueOrDefault<Color>(s_propSelectionBackColor); 323get => Properties.GetValueOrDefault<Color>(s_propSelectionForeColor); 338get => Properties.GetValueOrDefault<object?>(s_propTag); 346get => Properties.GetValueOrDefault(s_propWrapMode, DataGridViewTriState.NotSet);
System\Windows\Forms\Controls\DataGridView\DataGridViewCheckBoxCell.cs (5)
182get => Properties.GetValueOrDefault(s_propButtonCellState, ButtonState.Normal); 209get => Properties.GetValueOrDefault<object?>(s_propFalseValue); 235get => Properties.GetValueOrDefault(s_propFlatStyle, FlatStyle.Standard); 264get => Properties.GetValueOrDefault<object?>(s_propIndeterminateValue); 362get => Properties.GetValueOrDefault<object?>(s_propTrueValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewColumn.cs (1)
789get => Properties.GetValueOrDefault<Type>(s_propDataGridViewColumnValueType);
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (11)
132get => Properties.GetValueOrDefault<object>(s_propComboBoxCellDataSource); 226get => Properties.GetValueOrDefault<PropertyDescriptor?>(s_propComboBoxCellDisplayMemberProp); 233get => Properties.GetValueOrDefault(s_propComboBoxCellDisplayStyle, DataGridViewComboBoxDisplayStyle.DropDownButton); 269get => Properties.GetValueOrDefault<bool>(s_propComboBoxCellDisplayStyleForCurrentCellOnly); 318get => Properties.GetValueOrDefault(s_propComboBoxCellDropDownWidth, 1); 336get => Properties.GetValueOrDefault<DataGridViewComboBoxEditingControl?>(s_propComboBoxCellEditingComboBox); 346get => Properties.GetValueOrDefault(s_propComboBoxCellFlatStyle, FlatStyle.Standard); 378get => Properties.GetValueOrDefault(s_propComboBoxCellMaxDropDownItems, DefaultMaxDropDownItems); 447get => Properties.GetValueOrDefault<DataGridViewComboBoxColumn>(s_propComboBoxCellColumnTemplate); 482get => Properties.GetValueOrDefault<PropertyDescriptor?>(s_propComboBoxCellValueMemberProp); 792CurrencyManager? cm = Properties.GetValueOrDefault<CurrencyManager?>(s_propComboBoxCellDataManager);
System\Windows\Forms\Controls\DataGridView\DataGridViewHeaderCell.cs (4)
31get => Properties.GetValueOrDefault(s_propButtonState, ButtonState.Normal); 80get => Properties.GetValueOrDefault<Bitmap?>(s_propFlipXPThemesBitmap); 157get => Properties.GetValueOrDefault<Type?>(s_propValueType, s_defaultValueType); 425return Properties.GetValueOrDefault<object>(s_propCellValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewImageCell.cs (1)
98get => Properties.GetValueOrDefault(s_propImageCellLayout, DataGridViewImageCellLayout.Normal);
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (4)
117get => Properties.GetValueOrDefault(s_propLinkCellLinkBehavior, LinkBehavior.SystemDefault); 206get => Properties.GetValueOrDefault(s_propLinkCellLinkState, LinkState.Normal); 241get => Properties.GetValueOrDefault(s_propLinkCellTrackVisitedState, true); 272get => Properties.GetValueOrDefault<bool>(s_propLinkCellUseColumnTextForLinkValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewRowHeaderCell.cs (1)
570return Properties.GetValueOrDefault<object?>(s_propCellValue);
System\Windows\Forms\Controls\DataGridView\DataGridViewTextBoxCell.cs (2)
51get => Properties.GetValueOrDefault<DataGridViewTextBoxEditingControl?>(s_propTextBoxCellEditingTextBox); 67get => Properties.GetValueOrDefault(s_propTextBoxCellMaxInputLength, MaxInputLengthDefault);
System\Windows\Forms\Controls\Labels\Label.cs (4)
372Image? image = Properties.GetValueOrDefault<Image>(s_propImage); 507get => Properties.GetValueOrDefault<ImageList>(s_propImageList); 552get => Properties.GetValueOrDefault(s_propImageAlign, ContentAlignment.MiddleCenter); 696get => Properties.GetValueOrDefault(s_propTextAlign, ContentAlignment.TopLeft);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
1696ToolStripTextDirection textDirection = Properties.GetValueOrDefault(s_propTextDirection, ToolStripTextDirection.Horizontal);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
568get => Properties.GetValueOrDefault(s_propOpacity, 1.0d); 753get => Properties.GetValueOrDefault<Control>(s_propSourceControl);
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (22)
214get => Properties.GetValueOrDefault<string>(s_accessibleDefaultActionDescriptionProperty); 231get => Properties.GetValueOrDefault<string>(s_accessibleDescriptionProperty); 248get => Properties.GetValueOrDefault<string>(s_accessibleNameProperty); 264get => Properties.GetValueOrDefault(s_accessibleRoleProperty, AccessibleRole.Default); 390get => Properties.GetValueOrDefault<Image>(s_backgroundImageProperty); 489get => Properties.GetValueOrDefault(s_backgroundImageLayoutProperty, ImageLayout.Tile); 863Color foreColor = Properties.GetValueOrDefault<Color>(s_foreColorProperty); 1025Image? image = Properties.GetValueOrDefault<Image>(s_imageProperty); 1196Color color = Properties.GetValueOrDefault<Color>(s_foreColorProperty); 1284get => Properties.GetValueOrDefault(s_mergeActionProperty, MergeAction.Append); 1300get => Properties.GetValueOrDefault(s_mergeIndexProperty, -1); 1386get => WindowsFormsUtils.GetComponentName(this, Properties.GetValueOrDefault<string>(s_nameProperty)); 1556Image? image = Properties.GetValueOrDefault<Image>(s_imageProperty); 1617internal Color RawBackColor => Properties.GetValueOrDefault<Color>(s_backColorProperty, Color.Empty); 1733return Properties.GetValueOrDefault<Image>(s_mirroredImageProperty); 1853get => Properties.GetValueOrDefault<object>(s_tagProperty); 1912ToolStripTextDirection textDirection = Properties.GetValueOrDefault(s_textDirectionProperty, ToolStripTextDirection.Inherit); 2889Color backColor = Properties.GetValueOrDefault<Color>(s_backColorProperty); 2937Color foreColor = Properties.GetValueOrDefault<Color>(s_foreColorProperty); 2978ToolStripTextDirection textDirection = Properties.GetValueOrDefault(s_textDirectionProperty, ToolStripTextDirection.Inherit); 3294Color backColor = Properties.GetValueOrDefault<Color>(s_backColorProperty); 3308Color foreColor = Properties.GetValueOrDefault<Color>(s_foreColorProperty);
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (3)
302get => Properties.GetValueOrDefault(s_propCheckState, CheckState.Unchecked); 359get => Properties.GetValueOrDefault(s_propShortcutKeys, Keys.None); 480internal Form? MdiForm => Properties.GetValueOrDefault<Form>(s_propMdiForm);
System\Windows\Forms\Form.cs (22)
222get => Properties.GetValueOrDefault<IButtonControl?>(s_propAcceptButton); 337get => Properties.GetValueOrDefault<Form>(s_propActiveMdiChild); 345get => Properties.GetValueOrDefault<Form>(s_propFormerlyActiveMdiChild); 714get => Properties.GetValueOrDefault<IButtonControl>(s_propCancelButton); 804Form? formMdiParent = Properties.GetValueOrDefault<Form>(s_propFormMdiParent); 1080get => Properties.GetValueOrDefault<bool>(s_propMdiChildFocusable); 1162get => Properties.GetValueOrDefault<Rectangle>(s_propMaximizedBounds); 1264get => Properties.GetValueOrDefault<MenuStrip>(s_propMainMenuStrip); 1456get => Properties.GetValueOrDefault<Form>(s_propFormMdiParent); 1459Form? formMdiParent = Properties.GetValueOrDefault<Form>(s_propFormMdiParent); 1528get => Properties.GetValueOrDefault<MdiWindowListStrip>(s_propMdiWindowListStrip); 1534get => Properties.GetValueOrDefault<MdiControlStrip>(s_propMdiControlStrip); 1573get => Properties.GetValueOrDefault(s_propOpacity, 1.0d); 1660internal Form? OwnerInternal => Properties.GetValueOrDefault<Form?>(s_propOwner); 2006get => Properties.GetValueOrDefault(s_propTransparencyKey, Color.Empty); 2189get => Properties.GetValueOrDefault(s_propFormCornerPreference, FormCornerPreference.Default); 2281get => Properties.GetValueOrDefault(s_propFormBorderColor, Color.Empty); 2343get => Properties.GetValueOrDefault(s_propFormCaptionBackColor, Color.Empty); 2406get => Properties.GetValueOrDefault(s_propFormCaptionTextColor, Color.Empty); 3285Form? form = Properties.GetValueOrDefault<Form>(s_propFormMdiParent); 3658IWin32Window? dialogOwner = Properties.GetValueOrDefault<IWin32Window>(s_propDialogOwner); 5268IButtonControl? existing = Properties.GetValueOrDefault<IButtonControl>(s_propDefaultButton);
System\Windows\Forms\Layout\CommonProperties.cs (1)
728element.Properties.GetValueOrDefault<BitVector32>(s_layoutStateProperty);
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
578private void AxContainerFormCreated() => Properties.GetValueOrDefault<AxHost.AxContainer>(s_propAxContainer)?.FormCreated();
System\Windows\Forms\Layout\DefaultLayout.cs (1)
1086element.Properties.GetValueOrDefault<AnchorInfo>(s_layoutInfoProperty);
System\Windows\Forms\Layout\FlowLayout.cs (1)
292container.Properties.GetValueOrDefault<FlowDirection>(s_flowDirectionProperty);