1 type derived from ListBox
PresentationFramework (1)
System\Windows\Controls\ListView.cs (1)
30
public class ListView :
ListBox
2 instantiations of ListBox
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6433
bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.
ListBox
(); };
System\Windows\Markup\KnownTypes.cs (1)
1388
case KnownElements.ListBox: o = new System.Windows.Controls.
ListBox
(); break;
44 references to ListBox
Microsoft.VisualStudio.LanguageServices (2)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\MoveStaticMembers\StaticMemberSelection.g.cs (2)
53
internal System.Windows.Controls.
ListBox
MemberSelectionList;
117
this.MemberSelectionList = ((System.Windows.Controls.
ListBox
)(target));
PresentationFramework (42)
System\Windows\Automation\Peers\ListBoxAutomationPeer.cs (1)
27
public ListBoxAutomationPeer(
ListBox
owner): base(owner)
System\Windows\Automation\Peers\ListBoxItemAutomationPeer.cs (2)
69
ListBox
parent = ItemsControlAutomationPeer.Owner as
ListBox
;
System\Windows\Controls\GridViewHeaderRowPresenter.cs (2)
751
ListBox
parent = _itemsControl as
ListBox
;
System\Windows\Controls\ListBox.cs (25)
65
DefaultStyleKeyProperty.OverrideMetadata(typeof(
ListBox
), new FrameworkPropertyMetadata(typeof(
ListBox
)));
66
_dType = DependencyObjectType.FromSystemTypeInternal(typeof(
ListBox
));
68
IsTabStopProperty.OverrideMetadata(typeof(
ListBox
), new FrameworkPropertyMetadata(BooleanBoxes.FalseBox));
69
KeyboardNavigation.DirectionalNavigationProperty.OverrideMetadata(typeof(
ListBox
), new FrameworkPropertyMetadata(KeyboardNavigationMode.Contained));
70
KeyboardNavigation.TabNavigationProperty.OverrideMetadata(typeof(
ListBox
), new FrameworkPropertyMetadata(KeyboardNavigationMode.Once));
72
IsTextSearchEnabledProperty.OverrideMetadata(typeof(
ListBox
), new FrameworkPropertyMetadata(BooleanBoxes.TrueBox));
76
ItemsPanelProperty.OverrideMetadata(typeof(
ListBox
), new FrameworkPropertyMetadata(template));
79
EventManager.RegisterClassHandler(typeof(
ListBox
), Mouse.MouseUpEvent, new MouseButtonEventHandler(OnMouseButtonUp), true);
80
EventManager.RegisterClassHandler(typeof(
ListBox
), Keyboard.GotKeyboardFocusEvent, new KeyboardFocusChangedEventHandler(OnGotKeyboardFocus));
82
CommandHelpers.RegisterCommandHandler(typeof(
ListBox
),
ListBox
.SelectAllCommand, new ExecutedRoutedEventHandler(OnSelectAll), new CanExecuteRoutedEventHandler(OnQueryStatusSelectAll), KeyGesture.CreateFromResourceStrings(ListBoxSelectAllKey, SR.ListBoxSelectAllKeyDisplayString));
155
typeof(
ListBox
),
172
ListBox
listBox = (
ListBox
)d;
178
return ((
ListBox
)d).SelectionMode;
576
ListBox
listBox = (
ListBox
)sender;
585
ListBox
listbox = (
ListBox
)sender;
684
ListBox
listBox = target as
ListBox
;
693
ListBox
listBox = target as
ListBox
;
1064
new RoutedUICommand(SR.ListBoxSelectAllText, "SelectAll", typeof(
ListBox
));
System\Windows\Controls\ListBoxItem.cs (4)
282
ListBox
parent = ParentListBox;
305
ListBox
parent = ParentListBox;
374
private
ListBox
ParentListBox
378
return ParentSelector as
ListBox
;
System\Windows\Controls\Primitives\Selector.cs (1)
293
SelectionMode mode = (SelectionMode)GetValue(
ListBox
.SelectionModeProperty);
System\Windows\Controls\ViewBase.cs (1)
44
get { return typeof(
ListBox
); }
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
469
case 373: t = () => typeof(
ListBox
); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5037
Type type = typeof(System.Windows.Controls.
ListBox
);
5039
this.GetXamlType(typeof(System.Windows.Controls.
ListBox
)), // DeclaringType
5045
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.
ListBox
)target).Items; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6431
typeof(System.Windows.Controls.
ListBox
),
System\Windows\Markup\KnownTypes.cs (1)
5927
case KnownElements.ListBox: t = typeof(System.Windows.Controls.
ListBox
); break;