Implemented interface member:
property
Count
System.Collections.ICollection.Count
33 references to Count
System.Web.Mobile (12)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (2)
361
if (_cbAvailableFilters.Items.
Count
> 0)
384
if((index + 1) < _cbAvailableFilters.Items.
Count
)
UI\MobileControls\Design\PropertyOverridesDialog.cs (2)
303
if(_cbChoices.SelectedItem == null && _cbChoices.Items.
Count
> 0)
567
if (_cbChoices.Items.
Count
> 0)
UI\MobileControls\Design\StyleSheetDesigner.cs (3)
875
if (_mergedUI.CbStyles.Items.
Count
> 0)
882
_mergedUI.CbStyles.Enabled = (_mergedUI.CbStyles.Items.
Count
> 0);
966
if (_mergedUI.CbStyles.Items.
Count
== 0)
UI\MobileControls\Design\TemplatingOptionsDialog.cs (4)
187
if (_cmbChoices.Items.
Count
> 0)
226
Debug.Assert(_cmbChoices.Items.
Count
> 0);
396
_cmbChoices.Enabled = (_cmbChoices.Items.
Count
> 0);
397
_cmbSchemas.Enabled = (_cmbChoices.Items.
Count
> 1) &&
UI\MobileControls\Design\Util\UnsettableComboBox.cs (1)
95
if (Items.
Count
== 0)
System.Windows.Forms (19)
winforms\Managed\System\WinForms\ComboBox.cs (18)
951
int itemCount = Items.
Count
+ 1;
1011
string[] strings = new string[itemsCollection.
Count
];
1012
for (int i = 0; i < itemsCollection.
Count
; i++) {
1047
itemCount = itemsCollection.
Count
;
2076
if (itemsCollection == null || itemsCollection.
Count
== 0) {
2081
if (startIndex < -1 || startIndex >= itemsCollection.
Count
) {
2119
if (itemsCollection == null || itemsCollection.
Count
== 0) {
2124
if (startIndex < -1 || startIndex >= itemsCollection.
Count
) {
2171
if (index < 0 || itemsCollection == null || index >= itemsCollection.
Count
) {
2230
if (this.Items.
Count
> 0) {
2244
if (this.Items.
Count
> 0) {
3037
newItems = new object[savedItems.
Count
];
3187
if (itemsCollection.
Count
== 0) {
3360
return s + ", Items.Count: " + ((itemsCollection == null) ? (0).ToString(CultureInfo.CurrentCulture) : itemsCollection.
Count
.ToString(CultureInfo.CurrentCulture));
3371
int itemCount = (itemsCollection == null) ? 0 : itemsCollection.
Count
;
3399
for (int i = 0; i < Items.
Count
; i++) {
5244
if (index < 0 || index >= _owningComboBox.Items.
Count
) {
5254
return _owningComboBox.Items.
Count
;
winforms\Managed\System\WinForms\ToolStripComboBox.cs (1)
599
return base.ToString() + ", Items.Count: " + Items.
Count
.ToString(CultureInfo.CurrentCulture);
System.Workflow.ComponentModel (2)
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (2)
1183
this.paperSizeComboBox.Items.
Count
> 0)
1203
this.paperSourceComboBox.Items.
Count
> 0)