4 instantiations of ComboBoxItem
PresentationFramework (3)
System\Windows\Controls\ComboBox.cs (1)
1289return new ComboBoxItem();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2795bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.ComboBoxItem(); };
System\Windows\Markup\KnownTypes.cs (1)
1177case KnownElements.ComboBoxItem: o = new System.Windows.Controls.ComboBoxItem(); break;
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
1820ComboBoxItem newItem = new ComboBoxItem();
35 references to ComboBoxItem
Microsoft.VisualStudio.LanguageServices.CSharp (4)
artifacts\obj\Microsoft.VisualStudio.LanguageServices.CSharp\Release\net472\Options\AdvancedOptionPageControl.g.cs (4)
220internal System.Windows.Controls.ComboBoxItem Rename_UI_inline; 228internal System.Windows.Controls.ComboBoxItem Rename_UI_dashboard; 871this.Rename_UI_inline = ((System.Windows.Controls.ComboBoxItem)(target)); 874this.Rename_UI_dashboard = ((System.Windows.Controls.ComboBoxItem)(target));
Microsoft.VisualStudio.LanguageServices.VisualBasic (4)
artifacts\obj\Microsoft.VisualStudio.LanguageServices.VisualBasic\Release\net472\Options\AdvancedOptionPageControl.g.vb (4)
174Friend WithEvents Rename_UI_inline As System.Windows.Controls.ComboBoxItem 181Friend WithEvents Rename_UI_dashboard As System.Windows.Controls.ComboBoxItem 716Me.Rename_UI_inline = CType(target,System.Windows.Controls.ComboBoxItem) 720Me.Rename_UI_dashboard = CType(target,System.Windows.Controls.ComboBoxItem)
PresentationFramework (23)
System\Windows\Controls\ComboBox.cs (13)
29[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(ComboBoxItem))] 493ComboBoxItem highlightedElement; 1094ComboBoxItem cbi = info.Container as ComboBoxItem; 1245internal void NotifyComboBoxItemMouseDown(ComboBoxItem comboBoxItem) 1250internal void NotifyComboBoxItemMouseUp(ComboBoxItem comboBoxItem) 1262internal void NotifyComboBoxItemEnter(ComboBoxItem item) 1283return (item is ComboBoxItem); 1950ComboBoxItem cbi = (_highlightedInfo != null) ? _highlightedInfo.Container as ComboBoxItem : null; 1958cbi = (_highlightedInfo != null) ? _highlightedInfo.Container as ComboBoxItem : null; 1968private ComboBoxItem HighlightedElement 1970get { return (_highlightedInfo == null) ? null : _highlightedInfo.Container as ComboBoxItem; }
System\Windows\Controls\ComboBoxItem.cs (4)
42DefaultStyleKeyProperty.OverrideMetadata(typeof(ComboBoxItem), new FrameworkPropertyMetadata(typeof(ComboBoxItem))); 43_dType = DependencyObjectType.FromSystemTypeInternal(typeof(ComboBoxItem)); 54DependencyProperty.RegisterReadOnly("IsHighlighted", typeof(bool), typeof(ComboBoxItem),
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
187case 93: t = () => typeof(ComboBoxItem); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4316Type type = typeof(System.Windows.Controls.ComboBoxItem); 4317DependencyProperty dp = System.Windows.Controls.ComboBoxItem.ContentProperty; 4319this.GetXamlType(typeof(System.Windows.Controls.ComboBoxItem)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2793typeof(System.Windows.Controls.ComboBoxItem),
System\Windows\Markup\KnownTypes.cs (1)
5647case KnownElements.ComboBoxItem: t = typeof(System.Windows.Controls.ComboBoxItem); break;
PresentationUI (4)
MS\Internal\Documents\Application\ZoomComboBox.cs (1)
285Text = ((ComboBoxItem)SelectedItem).Content.ToString();
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (3)
1683ComboBoxItem cbItem = ZoomComboBox.SelectedItem as ComboBoxItem; 1820ComboBoxItem newItem = new ComboBoxItem();