ItemsControl
ItemsControl
ItemsControl
Class
Definition
Represents a control that can be used to present a collection of items.
public ref class ItemsControl : System::Windows::Controls::Control, System::Windows::Controls::Primitives::IContainItemStorage, System::Windows::Markup::IAddChild
[System.Windows.Localizability(System.Windows.LocalizationCategory.None, Readability=System.Windows.Readability.Unreadable)]
[System.Windows.Markup.ContentProperty("Items")]
[System.Windows.StyleTypedProperty(Property="ItemContainerStyle", StyleTargetType=typeof(System.Windows.FrameworkElement))]
public class ItemsControl : System.Windows.Controls.Control, System.Windows.Controls.Primitives.IContainItemStorage, System.Windows.Markup.IAddChild
Public Class ItemsControl
Inherits Control
Implements IAddChild, IContainItemStorage
- Inheritance
- Derived
-
System.Windows.Controls.HeaderedItemsControlSystem.Windows.Controls.HeaderedItemsControlSystem.Windows.Controls.HeaderedItemsControlSystem.Windows.Controls.Primitives.DataGridCellsPresenterSystem.Windows.Controls.Primitives.DataGridCellsPresenterSystem.Windows.Controls.Primitives.DataGridCellsPresenterSystem.Windows.Controls.Primitives.DataGridColumnHeadersPresenterSystem.Windows.Controls.Primitives.DataGridColumnHeadersPresenterSystem.Windows.Controls.Primitives.DataGridColumnHeadersPresenterSystem.Windows.Controls.Primitives.MenuBaseSystem.Windows.Controls.Primitives.MenuBaseSystem.Windows.Controls.Primitives.MenuBaseSystem.Windows.Controls.Primitives.SelectorSystem.Windows.Controls.Primitives.SelectorSystem.Windows.Controls.Primitives.SelectorSystem.Windows.Controls.Primitives.StatusBarSystem.Windows.Controls.Primitives.StatusBarSystem.Windows.Controls.Primitives.StatusBarSystem.Windows.Controls.Ribbon.RibbonContextualTabGroupItemsControlSystem.Windows.Controls.Ribbon.RibbonContextualTabGroupItemsControlSystem.Windows.Controls.Ribbon.RibbonContextualTabGroupItemsControlSystem.Windows.Controls.Ribbon.RibbonControlGroupSystem.Windows.Controls.Ribbon.RibbonControlGroupSystem.Windows.Controls.Ribbon.RibbonControlGroupSystem.Windows.Controls.Ribbon.RibbonGallerySystem.Windows.Controls.Ribbon.RibbonGallerySystem.Windows.Controls.Ribbon.RibbonGallerySystem.Windows.Controls.Ribbon.RibbonQuickAccessToolBarSystem.Windows.Controls.Ribbon.RibbonQuickAccessToolBarSystem.Windows.Controls.Ribbon.RibbonQuickAccessToolBar
- Attributes
- Implements
Examples
The following examples demonstrate binding data to an ItemsControl. The first example creates a class called MyData
that is a simple string collection.
public class MyData : ObservableCollection<string>
{
public MyData()
{
Add("Item 1");
Add("Item 2");
Add("Item 3");
}
}
Public Class MyData
Inherits ObservableCollection(Of String)
Public Sub New() '
Add("Item 1")
Add("Item 2")
Add("Item 3")
End Sub 'New
End Class 'MyData
The following example binds the ItemsSource object of an ItemsControl to MyData
.
<!--Create an instance of MyData as a resource.-->
<src:MyData x:Key="dataList"/>
<ListBox ItemsSource="{Binding Source={StaticResource dataList}}"/>
ListBox listBox1 = new ListBox();
MyData listData = new MyData();
Binding binding1 = new Binding();
binding1.Source = listData;
listBox1.SetBinding(ListBox.ItemsSourceProperty, binding1);
Dim listBox1 As New ListBox()
Dim listData As New MyData()
Dim binding1 As New Binding()
binding1.Source = listData
listBox1.SetBinding(ListBox.ItemsSourceProperty, binding1)
The following illustration shows the ListBox control created in the previous example.
The following example demonstrates how to populate an ItemsControl by using the Items property. The example adds the following different types of items to the ListBox:
<!--Create a ListBox that contains a string, a Rectangle,
a Panel, and a DateTime object. These items can be accessed
via the Items property.-->
<ListBox xmlns:sys="clr-namespace:System;assembly=mscorlib"
Name="simpleListBox">
<!-- The <ListBox.Items> element is implicitly used.-->
This is a string in a ListBox
<sys:DateTime>2004/3/4 13:6:55</sys:DateTime>
<Rectangle Height="40" Width="40" Fill="Blue"/>
<StackPanel Name="itemToSelect">
<Ellipse Height="40" Fill="Blue"/>
<TextBlock>Text below an Ellipse</TextBlock>
</StackPanel>
<TextBlock>String in a TextBlock</TextBlock>
</ListBox>
// Add a String to the ListBox.
listBox1.Items.Add("This is a string in a ListBox");
// Add a DateTime object to a ListBox.
DateTime dateTime1 = new DateTime(2004, 3, 4, 13, 6, 55);
listBox1.Items.Add(dateTime1);
// Add a Rectangle to the ListBox.
Rectangle rect1 = new Rectangle();
rect1.Width = 40;
rect1.Height = 40;
rect1.Fill = Brushes.Blue;
listBox1.Items.Add(rect1);
// Add a panel that contains multpile objects to the ListBox.
Ellipse ellipse1 = new Ellipse();
TextBlock textBlock1 = new TextBlock();
ellipse1.Width = 40;
ellipse1.Height = 40;
ellipse1.Fill = Brushes.Blue;
textBlock1.TextAlignment = TextAlignment.Center;
textBlock1.Text = "Text below an Ellipse";
stackPanel1.Children.Add(ellipse1);
stackPanel1.Children.Add(textBlock1);
listBox1.Items.Add(stackPanel1);
' Create a Button with a string as its content.
listBox1.Items.Add("This is a string in a ListBox")
' Create a Button with a DateTime object as its content.
Dim dateTime1 As New DateTime(2004, 3, 4, 13, 6, 55)
listBox1.Items.Add(dateTime1)
' Create a Button with a single UIElement as its content.
Dim rect1 As New Rectangle()
rect1.Width = 40
rect1.Height = 40
rect1.Fill = Brushes.Blue
listBox1.Items.Add(rect1)
' Create a Button with a panel that contains multiple objects
' as its content.
Dim ellipse1 As New Ellipse()
Dim textBlock1 As New TextBlock()
ellipse1.Width = 40
ellipse1.Height = 40
ellipse1.Fill = Brushes.Blue
textBlock1.TextAlignment = TextAlignment.Center
textBlock1.Text = "Text below an Ellipse"
stackPanel1.Children.Add(ellipse1)
stackPanel1.Children.Add(textBlock1)
listBox1.Items.Add(stackPanel1)
The following illustration shows the ListBox created in the previous example.
The following example illustrates how to use the different styling and templating-related properties that are provided by the ItemsControl. The ItemsControl in this example is bound to a collection of Task
objects. For demonstration purposes, the styles and templates in this example are all declared inline.
<ItemsControl Margin="10"
ItemsSource="{Binding Source={StaticResource myTodoList}}">
<!--The ItemsControl has no default visual appearance.
Use the Template property to specify a ControlTemplate to define
the appearance of an ItemsControl. The ItemsPresenter uses the specified
ItemsPanelTemplate (see below) to layout the items. If an
ItemsPanelTemplate is not specified, the default is used. (For ItemsControl,
the default is an ItemsPanelTemplate that specifies a StackPanel.-->
<ItemsControl.Template>
<ControlTemplate TargetType="ItemsControl">
<Border BorderBrush="Aqua" BorderThickness="1" CornerRadius="15">
<ItemsPresenter/>
</Border>
</ControlTemplate>
</ItemsControl.Template>
<!--Use the ItemsPanel property to specify an ItemsPanelTemplate
that defines the panel that is used to hold the generated items.
In other words, use this property if you want to affect
how the items are laid out.-->
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<!--Use the ItemTemplate to set a DataTemplate to define
the visualization of the data objects. This DataTemplate
specifies that each data object appears with the Proriity
and TaskName on top of a silver ellipse.-->
<ItemsControl.ItemTemplate>
<DataTemplate>
<DataTemplate.Resources>
<Style TargetType="TextBlock">
<Setter Property="FontSize" Value="18"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
</Style>
</DataTemplate.Resources>
<Grid>
<Ellipse Fill="Silver"/>
<StackPanel>
<TextBlock Margin="3,3,3,0"
Text="{Binding Path=Priority}"/>
<TextBlock Margin="3,0,3,7"
Text="{Binding Path=TaskName}"/>
</StackPanel>
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
<!--Use the ItemContainerStyle property to specify the appearance
of the element that contains the data. This ItemContainerStyle
gives each item container a margin and a width. There is also
a trigger that sets a tooltip that shows the description of
the data object when the mouse hovers over the item container.-->
<ItemsControl.ItemContainerStyle>
<Style>
<Setter Property="Control.Width" Value="100"/>
<Setter Property="Control.Margin" Value="5"/>
<Style.Triggers>
<Trigger Property="Control.IsMouseOver" Value="True">
<Setter Property="Control.ToolTip"
Value="{Binding RelativeSource={x:Static RelativeSource.Self},
Path=Content.Description}"/>
</Trigger>
</Style.Triggers>
</Style>
</ItemsControl.ItemContainerStyle>
</ItemsControl>
The following illustration is a screenshot of the example when it is rendered.
Two other style-related properties of the ItemsControl that are not shown here are GroupStyle and GroupStyleSelector.
Remarks
An ItemsControl is a type of Control that can contain multiple items, such as strings, objects, or other elements. The following illustration shows a ListBox control that contains the following different types of items:
ListBox that contains multiple types of objects
Use either the Items or the ItemsSource property to specify the collection to use to generate the content of your ItemsControl. You can set the ItemsSource property to any type that implements IEnumerable. ItemsSource is typically used to display a data collection or to bind an ItemsControl to a collection object.
If you do not want to use an object that implements IEnumerable to populate the ItemsControl, you can add items by using the Items property. The items in an ItemsControl can have different types. For example, a ListBox can contain one item that is a string and another item that is an Image.
When the ItemsSource property is set, the Items collection is set to read-only and fixed-size. This means that you cannot add items to the collection directly. When ItemsSource is in use, setting the property to null
removes the collection and restores usage to Items, which will be an empty ItemCollection.
Each ItemsControl type has a corresponding item container type. The corresponding item container for each ItemsControl appends Item
to its name. For example, for ListBox, the item containers are ListBoxItem controls; for ComboBox, they are ComboBoxItem controls. You can explicitly create a container type for each item in the ItemsControl, but it is not necessary. When you do not explicitly create the container type, one is generated that contains a data item in the item collection. For example, if you bind a collection of string objects to the ItemsSource property of a ListBox, you do not explicitly create ListBoxItem objects, but the ListBox will generate one for each string. You can access a generated item container by using the ItemContainerGenerator property.
Note
Certain features of UI Automation do not work correctly when an ItemsControl contains duplicate objects. If an object appears multiple times, only the first instance appears in the automation tree. (Two objects x and y are considered to be duplicates if Object.Equals(x, y)
returns true
.)
While an object x is in use by an ItemsControl the value returned by x.GetHashCode()
must not change. Changes to this value are unsupported, and lead to unpredictable behavior.
Dependency properties for this control might be set by the control’s default style. If a property is set by a default style, the property might change from its default value when the control appears in the application. The default style is determined by which desktop theme is used when the application is running. For more information, see Default WPF Themes.
Constructors
ItemsControl() ItemsControl() ItemsControl() |
Initializes a new instance of the ItemsControl class. |
Fields
Properties
ActualHeight ActualHeight ActualHeight |
Gets the rendered height of this element. (Inherited from FrameworkElement) |
ActualWidth ActualWidth ActualWidth |
Gets the rendered width of this element. (Inherited from FrameworkElement) |
AllowDrop AllowDrop AllowDrop |
Gets or sets a value indicating whether this element can be used as the target of a drag-and-drop operation. This is a dependency property. (Inherited from UIElement) |
AlternationCount AlternationCount AlternationCount |
Gets or sets the number of alternating item containers in the ItemsControl, which enables alternating containers to have a unique appearance. |
AreAnyTouchesCaptured AreAnyTouchesCaptured AreAnyTouchesCaptured |
Gets a value that indicates whether at least one touch is captured to this element. (Inherited from UIElement) |
AreAnyTouchesCapturedWithin AreAnyTouchesCapturedWithin AreAnyTouchesCapturedWithin |
Gets a value that indicates whether at least one touch is captured to this element or to any child elements in its visual tree. (Inherited from UIElement) |
AreAnyTouchesDirectlyOver AreAnyTouchesDirectlyOver AreAnyTouchesDirectlyOver |
Gets a value that indicates whether at least one touch is pressed over this element. (Inherited from UIElement) |
AreAnyTouchesOver AreAnyTouchesOver AreAnyTouchesOver |
Gets a value that indicates whether at least one touch is pressed over this element or any child elements in its visual tree. (Inherited from UIElement) |
Background Background Background |
Gets or sets a brush that describes the background of a control. (Inherited from Control) |
BindingGroup BindingGroup BindingGroup |
Gets or sets the BindingGroup that is used for the element. (Inherited from FrameworkElement) |
BitmapEffect BitmapEffect BitmapEffect |
Gets or sets a bitmap effect that applies directly to the rendered content for this element. This is a dependency property. (Inherited from UIElement) |
BitmapEffectInput BitmapEffectInput BitmapEffectInput |
Gets or sets an input source for the bitmap effect that applies directly to the rendered content for this element. This is a dependency property. (Inherited from UIElement) |
BorderBrush BorderBrush BorderBrush |
Gets or sets a brush that describes the border background of a control. (Inherited from Control) |
BorderThickness BorderThickness BorderThickness |
Gets or sets the border thickness of a control. (Inherited from Control) |
CacheMode CacheMode CacheMode |
Gets or sets a cached representation of the UIElement. (Inherited from UIElement) |
Clip Clip Clip |
Gets or sets the geometry used to define the outline of the contents of an element. This is a dependency property. (Inherited from UIElement) |
ClipToBounds ClipToBounds ClipToBounds |
Gets or sets a value indicating whether to clip the content of this element (or content coming from the child elements of this element) to fit into the size of the containing element. This is a dependency property. (Inherited from UIElement) |
CommandBindings CommandBindings CommandBindings |
Gets a collection of CommandBinding objects associated with this element. A CommandBinding enables command handling for this element, and declares the linkage between a command, its events, and the handlers attached by this element. (Inherited from UIElement) |
ContextMenu ContextMenu ContextMenu |
Gets or sets the context menu element that should appear whenever the context menu is requested through user interface (UI) from within this element. (Inherited from FrameworkElement) |
Cursor Cursor Cursor |
Gets or sets the cursor that displays when the mouse pointer is over this element. (Inherited from FrameworkElement) |
DataContext DataContext DataContext |
Gets or sets the data context for an element when it participates in data binding. (Inherited from FrameworkElement) |
DefaultStyleKey DefaultStyleKey DefaultStyleKey |
Gets or sets the key to use to reference the style for this control, when theme styles are used or defined. (Inherited from FrameworkElement) |
DependencyObjectType DependencyObjectType DependencyObjectType |
Gets the DependencyObjectType that wraps the CLR type of this instance. (Inherited from DependencyObject) |
DesiredSize DesiredSize DesiredSize |
Gets the size that this element computed during the measure pass of the layout process. (Inherited from UIElement) |
Dispatcher Dispatcher Dispatcher |
Gets the Dispatcher this DispatcherObject is associated with. (Inherited from DispatcherObject) |
DisplayMemberPath DisplayMemberPath DisplayMemberPath |
Gets or sets a path to a value on the source object to serve as the visual representation of the object. |
Effect Effect Effect |
Gets or sets the bitmap effect to apply to the UIElement. This is a dependency property. (Inherited from UIElement) |
FlowDirection FlowDirection FlowDirection |
Gets or sets the direction that text and other user interface (UI) elements flow within any parent element that controls their layout. (Inherited from FrameworkElement) |
Focusable Focusable Focusable |
Gets or sets a value that indicates whether the element can receive focus. This is a dependency property. (Inherited from UIElement) |
FocusVisualStyle FocusVisualStyle FocusVisualStyle |
Gets or sets a property that enables customization of appearance, effects, or other style characteristics that will apply to this element when it captures keyboard focus. (Inherited from FrameworkElement) |
FontFamily FontFamily FontFamily |
Gets or sets the font family of the control. (Inherited from Control) |
FontSize FontSize FontSize |
Gets or sets the font size. (Inherited from Control) |
FontStretch FontStretch FontStretch |
Gets or sets the degree to which a font is condensed or expanded on the screen. (Inherited from Control) |
FontStyle FontStyle FontStyle |
Gets or sets the font style. (Inherited from Control) |
FontWeight FontWeight FontWeight |
Gets or sets the weight or thickness of the specified font. (Inherited from Control) |
ForceCursor ForceCursor ForceCursor |
Gets or sets a value that indicates whether this FrameworkElement should force the user interface (UI) to render the cursor as declared by the Cursor property. (Inherited from FrameworkElement) |
Foreground Foreground Foreground |
Gets or sets a brush that describes the foreground color. (Inherited from Control) |
GroupStyle GroupStyle GroupStyle |
Gets a collection of GroupStyle objects that define the appearance of each level of groups. |
GroupStyleSelector GroupStyleSelector GroupStyleSelector |
Gets or sets a method that enables you to provide custom selection logic for a GroupStyle to apply to each group in a collection. |
HandlesScrolling HandlesScrolling HandlesScrolling |
Gets a value that indicates whether a control supports scrolling. (Inherited from Control) |
HasAnimatedProperties HasAnimatedProperties HasAnimatedProperties |
Gets a value indicating whether this element has any animated properties. (Inherited from UIElement) |
HasEffectiveKeyboardFocus HasEffectiveKeyboardFocus HasEffectiveKeyboardFocus |
Gets a value that indicates whether the UIElement has focus. (Inherited from UIElement) |
HasItems HasItems HasItems |
Gets a value that indicates whether the ItemsControl contains items. |
Height Height Height |
Gets or sets the suggested height of the element. (Inherited from FrameworkElement) |
HorizontalAlignment HorizontalAlignment HorizontalAlignment |
Gets or sets the horizontal alignment characteristics applied to this element when it is composed within a parent element, such as a panel or items control. (Inherited from FrameworkElement) |
HorizontalContentAlignment HorizontalContentAlignment HorizontalContentAlignment |
Gets or sets the horizontal alignment of the control's content. (Inherited from Control) |
InheritanceBehavior InheritanceBehavior InheritanceBehavior |
Gets or sets the scope limits for property value inheritance, resource key lookup, and RelativeSource FindAncestor lookup. (Inherited from FrameworkElement) |
InputBindings InputBindings InputBindings |
Gets the collection of input bindings associated with this element. (Inherited from UIElement) |
InputScope InputScope InputScope |
Gets or sets the context for input used by this FrameworkElement. (Inherited from FrameworkElement) |
IsArrangeValid IsArrangeValid IsArrangeValid |
Gets a value indicating whether the computed size and position of child elements in this element's layout are valid. (Inherited from UIElement) |
IsEnabled IsEnabled IsEnabled |
Gets or sets a value indicating whether this element is enabled in the user interface (UI). This is a dependency property. (Inherited from UIElement) |
IsEnabledCore IsEnabledCore IsEnabledCore |
Gets a value that becomes the return value of IsEnabled in derived classes. (Inherited from UIElement) |
IsFocused IsFocused IsFocused |
Gets a value that determines whether this element has logical focus. This is a dependency property. (Inherited from UIElement) |
IsGrouping IsGrouping IsGrouping |
Gets a value that indicates whether the control is using grouping. |
IsHitTestVisible IsHitTestVisible IsHitTestVisible |
Gets or sets a value that declares whether this element can possibly be returned as a hit test result from some portion of its rendered content. This is a dependency property. (Inherited from UIElement) |
IsInitialized IsInitialized IsInitialized |
Gets a value that indicates whether this element has been initialized, either during processing by a XAML processor, or by explicitly having its EndInit() method called. (Inherited from FrameworkElement) |
IsInputMethodEnabled IsInputMethodEnabled IsInputMethodEnabled |
Gets a value indicating whether an input method system, such as an Input Method Editor (IME), is enabled for processing the input to this element. (Inherited from UIElement) |
IsKeyboardFocused IsKeyboardFocused IsKeyboardFocused |
Gets a value indicating whether this element has keyboard focus. This is a dependency property. (Inherited from UIElement) |
IsKeyboardFocusWithin IsKeyboardFocusWithin IsKeyboardFocusWithin |
Gets a value indicating whether keyboard focus is anywhere within the element or its visual tree child elements. This is a dependency property. (Inherited from UIElement) |
IsLoaded IsLoaded IsLoaded |
Gets a value that indicates whether this element has been loaded for presentation. (Inherited from FrameworkElement) |
IsManipulationEnabled IsManipulationEnabled IsManipulationEnabled |
Gets or sets a value that indicates whether manipulation events are enabled on this UIElement. (Inherited from UIElement) |
IsMeasureValid IsMeasureValid IsMeasureValid |
Gets a value indicating whether the current size returned by layout measure is valid. (Inherited from UIElement) |
IsMouseCaptured IsMouseCaptured IsMouseCaptured |
Gets a value indicating whether the mouse is captured to this element. This is a dependency property. (Inherited from UIElement) |
IsMouseCaptureWithin IsMouseCaptureWithin IsMouseCaptureWithin |
Gets a value that determines whether mouse capture is held by this element or by child elements in its visual tree. This is a dependency property. (Inherited from UIElement) |
IsMouseDirectlyOver IsMouseDirectlyOver IsMouseDirectlyOver |
Gets a value that indicates whether the position of the mouse pointer corresponds to hit test results, which take element compositing into account. This is a dependency property. (Inherited from UIElement) |
IsMouseOver IsMouseOver IsMouseOver |
Gets a value indicating whether the mouse pointer is located over this element (including child elements in the visual tree). This is a dependency property. (Inherited from UIElement) |
IsSealed IsSealed IsSealed |
Gets a value that indicates whether this instance is currently sealed (read-only). (Inherited from DependencyObject) |
IsStylusCaptured IsStylusCaptured IsStylusCaptured |
Gets a value indicating whether the stylus is captured by this element. This is a dependency property. (Inherited from UIElement) |
IsStylusCaptureWithin IsStylusCaptureWithin IsStylusCaptureWithin |
Gets a value that determines whether stylus capture is held by this element, or an element within the element bounds and its visual tree. This is a dependency property. (Inherited from UIElement) |
IsStylusDirectlyOver IsStylusDirectlyOver IsStylusDirectlyOver |
Gets a value that indicates whether the stylus position corresponds to hit test results, which take element compositing into account. This is a dependency property. (Inherited from UIElement) |
IsStylusOver IsStylusOver IsStylusOver |
Gets a value indicating whether the stylus cursor is located over this element (including visual child elements). This is a dependency property. (Inherited from UIElement) |
IsTabStop IsTabStop IsTabStop |
Gets or sets a value that indicates whether a control is included in tab navigation. (Inherited from Control) |
IsTextSearchCaseSensitive IsTextSearchCaseSensitive IsTextSearchCaseSensitive |
Gets or sets a value that indicates whether case is a condition when searching for items. |
IsTextSearchEnabled IsTextSearchEnabled IsTextSearchEnabled |
Gets or sets a value that indicates whether TextSearch is enabled on the ItemsControl instance. |
IsVisible IsVisible IsVisible |
Gets a value indicating whether this element is visible in the user interface (UI). This is a dependency property. (Inherited from UIElement) |
ItemBindingGroup ItemBindingGroup ItemBindingGroup |
Gets or sets the BindingGroup that is copied to each item in the ItemsControl. |
ItemContainerGenerator ItemContainerGenerator ItemContainerGenerator |
Gets the ItemContainerGenerator that is associated with the control. |
ItemContainerStyle ItemContainerStyle ItemContainerStyle |
Gets or sets the Style that is applied to the container element generated for each item. |
ItemContainerStyleSelector ItemContainerStyleSelector ItemContainerStyleSelector |
Gets or sets custom style-selection logic for a style that can be applied to each generated container element. |
Items Items Items |
Gets the collection used to generate the content of the ItemsControl. |
ItemsPanel ItemsPanel ItemsPanel |
Gets or sets the template that defines the panel that controls the layout of items. |
ItemsSource ItemsSource ItemsSource |
Gets or sets a collection used to generate the content of the ItemsControl. |
ItemStringFormat ItemStringFormat ItemStringFormat |
Gets or sets a composite string that specifies how to format the items in the ItemsControl if they are displayed as strings. |
ItemTemplate ItemTemplate ItemTemplate |
Gets or sets the DataTemplate used to display each item. |
ItemTemplateSelector ItemTemplateSelector ItemTemplateSelector |
Gets or sets the custom logic for choosing a template used to display each item. |
Language Language Language |
Gets or sets localization/globalization language information that applies to an element. (Inherited from FrameworkElement) |
LayoutTransform LayoutTransform LayoutTransform |
Gets or sets a graphics transformation that should apply to this element when layout is performed. (Inherited from FrameworkElement) |
LogicalChildren LogicalChildren LogicalChildren |
Gets an enumerator for the logical child objects of the ItemsControl object. |
Margin Margin Margin |
Gets or sets the outer margin of an element. (Inherited from FrameworkElement) |
MaxHeight MaxHeight MaxHeight |
Gets or sets the maximum height constraint of the element. (Inherited from FrameworkElement) |
MaxWidth MaxWidth MaxWidth |
Gets or sets the maximum width constraint of the element. (Inherited from FrameworkElement) |
MinHeight MinHeight MinHeight |
Gets or sets the minimum height constraint of the element. (Inherited from FrameworkElement) |
MinWidth MinWidth MinWidth |
Gets or sets the minimum width constraint of the element. (Inherited from FrameworkElement) |
Name Name Name |
Gets or sets the identifying name of the element. The name provides a reference so that code-behind, such as event handler code, can refer to a markup element after it is constructed during processing by a XAML processor. (Inherited from FrameworkElement) |
Opacity Opacity Opacity |
Gets or sets the opacity factor applied to the entire UIElement when it is rendered in the user interface (UI). This is a dependency property. (Inherited from UIElement) |
OpacityMask OpacityMask OpacityMask |
Gets or sets an opacity mask, as a Brush implementation that is applied to any alpha-channel masking for the rendered content of this element. This is a dependency property. (Inherited from UIElement) |
OverridesDefaultStyle OverridesDefaultStyle OverridesDefaultStyle |
Gets or sets a value that indicates whether this element incorporates style properties from theme styles. (Inherited from FrameworkElement) |
Padding Padding Padding |
Gets or sets the padding inside a control. (Inherited from Control) |
Parent Parent Parent |
Gets the logical parent element of this element. (Inherited from FrameworkElement) |
PersistId PersistId PersistId |
Gets a value that uniquely identifies this element. (Inherited from UIElement) |
RenderSize RenderSize RenderSize |
Gets (or sets) the final render size of this element. (Inherited from UIElement) |
RenderTransform RenderTransform RenderTransform |
Gets or sets transform information that affects the rendering position of this element. This is a dependency property. (Inherited from UIElement) |
RenderTransformOrigin RenderTransformOrigin RenderTransformOrigin |
Gets or sets the center point of any possible render transform declared by RenderTransform, relative to the bounds of the element. This is a dependency property. (Inherited from UIElement) |
Resources Resources Resources |
Gets or sets the locally-defined resource dictionary. (Inherited from FrameworkElement) |
SnapsToDevicePixels SnapsToDevicePixels SnapsToDevicePixels |
Gets or sets a value that determines whether rendering for this element should use device-specific pixel settings during rendering. This is a dependency property. (Inherited from UIElement) |
Style Style Style |
Gets or sets the style used by this element when it is rendered. (Inherited from FrameworkElement) |
StylusPlugIns StylusPlugIns StylusPlugIns |
Gets a collection of all stylus plug-in (customization) objects associated with this element. (Inherited from UIElement) |
TabIndex TabIndex TabIndex |
Gets or sets a value that determines the order in which elements receive focus when the user navigates through controls by using the TAB key. (Inherited from Control) |
Tag Tag Tag |
Gets or sets an arbitrary object value that can be used to store custom information about this element. (Inherited from FrameworkElement) |
Template Template Template |
Gets or sets a control template. (Inherited from Control) |
TemplatedParent TemplatedParent TemplatedParent |
Gets a reference to the template parent of this element. This property is not relevant if the element was not created through a template. (Inherited from FrameworkElement) |
ToolTip ToolTip ToolTip |
Gets or sets the tool-tip object that is displayed for this element in the user interface (UI). (Inherited from FrameworkElement) |
TouchesCaptured TouchesCaptured TouchesCaptured |
Gets all touch devices that are captured to this element. (Inherited from UIElement) |
TouchesCapturedWithin TouchesCapturedWithin TouchesCapturedWithin |
Gets all touch devices that are captured to this element or any child elements in its visual tree. (Inherited from UIElement) |
TouchesDirectlyOver TouchesDirectlyOver TouchesDirectlyOver |
Gets all touch devices that are over this element. (Inherited from UIElement) |
TouchesOver TouchesOver TouchesOver |
Gets all touch devices that are over this element or any child elements in its visual tree. (Inherited from UIElement) |
Triggers Triggers Triggers |
Gets the collection of triggers established directly on this element, or in child elements. (Inherited from FrameworkElement) |
Uid Uid Uid |
Gets or sets the unique identifier (for localization) for this element. This is a dependency property. (Inherited from UIElement) |
UseLayoutRounding UseLayoutRounding UseLayoutRounding |
Gets or sets a value that indicates whether layout rounding should be applied to this element's size and position during layout. (Inherited from FrameworkElement) |
VerticalAlignment VerticalAlignment VerticalAlignment |
Gets or sets the vertical alignment characteristics applied to this element when it is composed within a parent element such as a panel or items control. (Inherited from FrameworkElement) |
VerticalContentAlignment VerticalContentAlignment VerticalContentAlignment |
Gets or sets the vertical alignment of the control's content. (Inherited from Control) |
Visibility Visibility Visibility |
Gets or sets the user interface (UI) visibility of this element. This is a dependency property. (Inherited from UIElement) |
VisualBitmapEffect VisualBitmapEffect VisualBitmapEffect |
Gets or sets the BitmapEffect value for the Visual. (Inherited from Visual) |
VisualBitmapEffectInput VisualBitmapEffectInput VisualBitmapEffectInput |
Gets or sets the BitmapEffectInput value for the Visual. (Inherited from Visual) |
VisualBitmapScalingMode VisualBitmapScalingMode VisualBitmapScalingMode |
Gets or sets the BitmapScalingMode for the Visual. (Inherited from Visual) |
VisualCacheMode VisualCacheMode VisualCacheMode |
Gets or sets a cached representation of the Visual. (Inherited from Visual) |
VisualChildrenCount VisualChildrenCount VisualChildrenCount |
Gets the number of visual child elements within this element. (Inherited from FrameworkElement) |
VisualClearTypeHint VisualClearTypeHint VisualClearTypeHint |
Gets or sets the ClearTypeHint that determines how ClearType is rendered in the Visual. (Inherited from Visual) |
VisualClip VisualClip VisualClip |
Gets or sets the clip region of the Visual as a Geometry value. (Inherited from Visual) |
VisualEdgeMode VisualEdgeMode VisualEdgeMode |
Gets or sets the edge mode of the Visual as an EdgeMode value. (Inherited from Visual) |
VisualEffect VisualEffect VisualEffect |
Gets or sets the bitmap effect to apply to the Visual. (Inherited from Visual) |
VisualOffset VisualOffset VisualOffset |
Gets or sets the offset value of the visual object. (Inherited from Visual) |
VisualOpacity VisualOpacity VisualOpacity |
Gets or sets the opacity of the Visual. (Inherited from Visual) |
VisualOpacityMask VisualOpacityMask VisualOpacityMask |
Gets or sets the Brush value that represents the opacity mask of the Visual. (Inherited from Visual) |
VisualParent VisualParent VisualParent |
Gets the visual tree parent of the visual object. (Inherited from Visual) |
VisualScrollableAreaClip VisualScrollableAreaClip VisualScrollableAreaClip |
Gets or sets a clipped scrollable area for the Visual. (Inherited from Visual) |
VisualTextHintingMode VisualTextHintingMode VisualTextHintingMode |
Gets or sets the TextHintingMode of the Visual. (Inherited from Visual) |
VisualTextRenderingMode VisualTextRenderingMode VisualTextRenderingMode |
Gets or sets the TextRenderingMode of the Visual. (Inherited from Visual) |
VisualTransform VisualTransform VisualTransform |
Gets or sets the Transform value for the Visual. (Inherited from Visual) |
VisualXSnappingGuidelines VisualXSnappingGuidelines VisualXSnappingGuidelines |
Gets or sets the x-coordinate (vertical) guideline collection. (Inherited from Visual) |
VisualYSnappingGuidelines VisualYSnappingGuidelines VisualYSnappingGuidelines |
Gets or sets the y-coordinate (horizontal) guideline collection. (Inherited from Visual) |
Width Width Width |
Gets or sets the width of the element. (Inherited from FrameworkElement) |
Attached Properties
AlternationIndex AlternationIndex AlternationIndex |
Methods
AddChild(Object) AddChild(Object) AddChild(Object) |
Adds the specified object as the child of the ItemsControl object. |
AddHandler(RoutedEvent, Delegate) AddHandler(RoutedEvent, Delegate) AddHandler(RoutedEvent, Delegate) |
Adds a routed event handler for a specified routed event, adding the handler to the handler collection on the current element. (Inherited from UIElement) |
AddHandler(RoutedEvent, Delegate, Boolean) AddHandler(RoutedEvent, Delegate, Boolean) AddHandler(RoutedEvent, Delegate, Boolean) |
Adds a routed event handler for a specified routed event, adding the handler to the handler collection on the current element. Specify |
AddLogicalChild(Object) AddLogicalChild(Object) AddLogicalChild(Object) |
Adds the provided object to the logical tree of this element. (Inherited from FrameworkElement) |
AddText(String) AddText(String) AddText(String) |
Adds the specified text string to the ItemsControl object. |
AddToEventRoute(EventRoute, RoutedEventArgs) AddToEventRoute(EventRoute, RoutedEventArgs) AddToEventRoute(EventRoute, RoutedEventArgs) |
Adds handlers to the specified EventRoute for the current UIElement event handler collection. (Inherited from UIElement) |
AddVisualChild(Visual) AddVisualChild(Visual) AddVisualChild(Visual) |
Defines the parent-child relationship between two visuals. (Inherited from Visual) |
ApplyAnimationClock(DependencyProperty, AnimationClock) ApplyAnimationClock(DependencyProperty, AnimationClock) ApplyAnimationClock(DependencyProperty, AnimationClock) |
Applies an animation to a specified dependency property on this element. Any existing animations are stopped and replaced with the new animation. (Inherited from UIElement) |
ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior) ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior) ApplyAnimationClock(DependencyProperty, AnimationClock, HandoffBehavior) |
Applies an animation to a specified dependency property on this element, with the ability to specify what happens if the property already has a running animation. (Inherited from UIElement) |
ApplyTemplate() ApplyTemplate() ApplyTemplate() |
Builds the current template's visual tree if necessary, and returns a value that indicates whether the visual tree was rebuilt by this call. (Inherited from FrameworkElement) |
Arrange(Rect) Arrange(Rect) Arrange(Rect) |
Positions child elements and determines a size for a UIElement. Parent elements call this method from their ArrangeCore(Rect) implementation (or a WPF framework-level equivalent) to form a recursive layout update. This method constitutes the second pass of a layout update. (Inherited from UIElement) |
ArrangeCore(Rect) ArrangeCore(Rect) ArrangeCore(Rect) |
Implements ArrangeCore(Rect) (defined as virtual in UIElement) and seals the implementation. (Inherited from FrameworkElement) |
ArrangeOverride(Size) ArrangeOverride(Size) ArrangeOverride(Size) |
Called to arrange and size the content of a Control object. (Inherited from Control) |
BeginAnimation(DependencyProperty, AnimationTimeline) BeginAnimation(DependencyProperty, AnimationTimeline) BeginAnimation(DependencyProperty, AnimationTimeline) |
Starts an animation for a specified animated property on this element. (Inherited from UIElement) |
BeginAnimation(DependencyProperty, AnimationTimeline, HandoffBehavior) BeginAnimation(DependencyProperty, AnimationTimeline, HandoffBehavior) BeginAnimation(DependencyProperty, AnimationTimeline, HandoffBehavior) |
Starts a specific animation for a specified animated property on this element, with the option of specifying what happens if the property already has a running animation. (Inherited from UIElement) |
BeginInit() BeginInit() BeginInit() |
Indicates that the initialization of the ItemsControl object is about to start. |
BeginStoryboard(Storyboard) BeginStoryboard(Storyboard) BeginStoryboard(Storyboard) |
Begins the sequence of actions that are contained in the provided storyboard. (Inherited from FrameworkElement) |
BeginStoryboard(Storyboard, HandoffBehavior) BeginStoryboard(Storyboard, HandoffBehavior) BeginStoryboard(Storyboard, HandoffBehavior) |
Begins the sequence of actions contained in the provided storyboard, with options specified for what should happen if the property is already animated. (Inherited from FrameworkElement) |
BeginStoryboard(Storyboard, HandoffBehavior, Boolean) BeginStoryboard(Storyboard, HandoffBehavior, Boolean) BeginStoryboard(Storyboard, HandoffBehavior, Boolean) |
Begins the sequence of actions contained in the provided storyboard, with specified state for control of the animation after it is started. (Inherited from FrameworkElement) |
BringIntoView() BringIntoView() BringIntoView() |
Attempts to bring this element into view, within any scrollable regions it is contained within. (Inherited from FrameworkElement) |
BringIntoView(Rect) BringIntoView(Rect) BringIntoView(Rect) |
Attempts to bring the provided region size of this element into view, within any scrollable regions it is contained within. (Inherited from FrameworkElement) |
CaptureMouse() CaptureMouse() CaptureMouse() |
Attempts to force capture of the mouse to this element. (Inherited from UIElement) |
CaptureStylus() CaptureStylus() CaptureStylus() |
Attempts to force capture of the stylus to this element. (Inherited from UIElement) |
CaptureTouch(TouchDevice) CaptureTouch(TouchDevice) CaptureTouch(TouchDevice) |
Attempts to force capture of a touch to this element. (Inherited from UIElement) |
CheckAccess() CheckAccess() CheckAccess() |
Determines whether the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject) |
ClearContainerForItemOverride(DependencyObject, Object) ClearContainerForItemOverride(DependencyObject, Object) ClearContainerForItemOverride(DependencyObject, Object) |
When overridden in a derived class, undoes the effects of the PrepareContainerForItemOverride(DependencyObject, Object) method. |
ClearValue(DependencyProperty) ClearValue(DependencyProperty) ClearValue(DependencyProperty) |
Clears the local value of a property. The property to be cleared is specified by a DependencyProperty identifier. (Inherited from DependencyObject) |
ClearValue(DependencyPropertyKey) ClearValue(DependencyPropertyKey) ClearValue(DependencyPropertyKey) |
Clears the local value of a read-only property. The property to be cleared is specified by a DependencyPropertyKey. (Inherited from DependencyObject) |
CoerceValue(DependencyProperty) CoerceValue(DependencyProperty) CoerceValue(DependencyProperty) |
Coerces the value of the specified dependency property. This is accomplished by invoking any CoerceValueCallback function specified in property metadata for the dependency property as it exists on the calling DependencyObject. (Inherited from DependencyObject) |
ContainerFromElement(DependencyObject) ContainerFromElement(DependencyObject) ContainerFromElement(DependencyObject) |
Returns the container that belongs to the current ItemsControl that owns the given element. |
ContainerFromElement(ItemsControl, DependencyObject) ContainerFromElement(ItemsControl, DependencyObject) ContainerFromElement(ItemsControl, DependencyObject) |
Returns the container that belongs to the specified ItemsControl that owns the given container element. |
EndInit() EndInit() EndInit() |
Indicates that the initialization of the ItemsControl object is complete. |
Equals(Object) Equals(Object) Equals(Object) |
Determines whether a provided DependencyObject is equivalent to the current DependencyObject. (Inherited from DependencyObject) |
FindCommonVisualAncestor(DependencyObject) FindCommonVisualAncestor(DependencyObject) FindCommonVisualAncestor(DependencyObject) |
Returns the common ancestor of two visual objects. (Inherited from Visual) |
FindName(String) FindName(String) FindName(String) |
Finds an element that has the provided identifier name. (Inherited from FrameworkElement) |
FindResource(Object) FindResource(Object) FindResource(Object) |
Searches for a resource with the specified key, and throws an exception if the requested resource is not found. (Inherited from FrameworkElement) |
Focus() Focus() Focus() |
Attempts to set focus to this element. (Inherited from UIElement) |
GetAlternationIndex(DependencyObject) GetAlternationIndex(DependencyObject) GetAlternationIndex(DependencyObject) |
Gets the AlternationIndex for the specified object. |
GetAnimationBaseValue(DependencyProperty) GetAnimationBaseValue(DependencyProperty) GetAnimationBaseValue(DependencyProperty) |
Returns the base property value for the specified property on this element, disregarding any possible animated value from a running or stopped animation. (Inherited from UIElement) |
GetBindingExpression(DependencyProperty) GetBindingExpression(DependencyProperty) GetBindingExpression(DependencyProperty) |
Returns the BindingExpression that represents the binding on the specified property. (Inherited from FrameworkElement) |
GetContainerForItemOverride() GetContainerForItemOverride() GetContainerForItemOverride() |
Creates or identifies the element that is used to display the given item. |
GetHashCode() GetHashCode() GetHashCode() |
Gets a hash code for this DependencyObject. (Inherited from DependencyObject) |
GetItemsOwner(DependencyObject) GetItemsOwner(DependencyObject) GetItemsOwner(DependencyObject) |
Returns the ItemsControl that the specified element hosts items for. |
GetLayoutClip(Size) GetLayoutClip(Size) GetLayoutClip(Size) |
Returns a geometry for a clipping mask. The mask applies if the layout system attempts to arrange an element that is larger than the available display space. (Inherited from FrameworkElement) |
GetLocalValueEnumerator() GetLocalValueEnumerator() GetLocalValueEnumerator() |
Creates a specialized enumerator for determining which dependency properties have locally set values on this DependencyObject. (Inherited from DependencyObject) |
GetTemplateChild(String) GetTemplateChild(String) GetTemplateChild(String) |
Returns the named element in the visual tree of an instantiated ControlTemplate. (Inherited from FrameworkElement) |
GetType() GetType() GetType() |
Gets the Type of the current instance. (Inherited from Object) |
GetUIParentCore() GetUIParentCore() GetUIParentCore() |
Returns an alternative logical parent for this element if there is no visual parent. (Inherited from FrameworkElement) |
GetValue(DependencyProperty) GetValue(DependencyProperty) GetValue(DependencyProperty) |
Returns the current effective value of a dependency property on this instance of a DependencyObject. (Inherited from DependencyObject) |
GetVisualChild(Int32) GetVisualChild(Int32) GetVisualChild(Int32) |
Overrides GetVisualChild(Int32), and returns a child at the specified index from a collection of child elements. (Inherited from FrameworkElement) |
HitTestCore(GeometryHitTestParameters) HitTestCore(GeometryHitTestParameters) HitTestCore(GeometryHitTestParameters) |
Implements HitTestCore(GeometryHitTestParameters) to supply base element hit testing behavior (returning GeometryHitTestResult). (Inherited from UIElement) |
HitTestCore(PointHitTestParameters) HitTestCore(PointHitTestParameters) HitTestCore(PointHitTestParameters) |
Implements HitTestCore(PointHitTestParameters) to supply base element hit testing behavior (returning HitTestResult). (Inherited from UIElement) |
InputHitTest(Point) InputHitTest(Point) InputHitTest(Point) |
Returns the input element within the current element that is at the specified coordinates, relative to the current element's origin. (Inherited from UIElement) |
InvalidateArrange() InvalidateArrange() InvalidateArrange() |
Invalidates the arrange state (layout) for the element. After the invalidation, the element will have its layout updated, which will occur asynchronously unless subsequently forced by UpdateLayout(). (Inherited from UIElement) |
InvalidateMeasure() InvalidateMeasure() InvalidateMeasure() |
Invalidates the measurement state (layout) for the element. (Inherited from UIElement) |
InvalidateProperty(DependencyProperty) InvalidateProperty(DependencyProperty) InvalidateProperty(DependencyProperty) |
Re-evaluates the effective value for the specified dependency property (Inherited from DependencyObject) |
InvalidateVisual() InvalidateVisual() InvalidateVisual() |
Invalidates the rendering of the element, and forces a complete new layout pass. OnRender(DrawingContext) is called after the layout cycle is completed. (Inherited from UIElement) |
IsAncestorOf(DependencyObject) IsAncestorOf(DependencyObject) IsAncestorOf(DependencyObject) |
Determines whether the visual object is an ancestor of the descendant visual object. (Inherited from Visual) |
IsDescendantOf(DependencyObject) IsDescendantOf(DependencyObject) IsDescendantOf(DependencyObject) |
Determines whether the visual object is a descendant of the ancestor visual object. (Inherited from Visual) |
IsItemItsOwnContainer(Object) IsItemItsOwnContainer(Object) IsItemItsOwnContainer(Object) |
Determines if the specified item is (or is eligible to be) its own container. |
IsItemItsOwnContainerOverride(Object) IsItemItsOwnContainerOverride(Object) IsItemItsOwnContainerOverride(Object) |
Determines if the specified item is (or is eligible to be) its own container. |
ItemsControlFromItemContainer(DependencyObject) ItemsControlFromItemContainer(DependencyObject) ItemsControlFromItemContainer(DependencyObject) |
Returns the ItemsControl that owns the specified container element. |
Measure(Size) Measure(Size) Measure(Size) |
Updates the DesiredSize of a UIElement. Parent elements call this method from their own MeasureCore(Size) implementations to form a recursive layout update. Calling this method constitutes the first pass (the "Measure" pass) of a layout update. (Inherited from UIElement) |
MeasureCore(Size) MeasureCore(Size) MeasureCore(Size) |
Implements basic measure-pass layout system behavior for FrameworkElement. (Inherited from FrameworkElement) |
MeasureOverride(Size) MeasureOverride(Size) MeasureOverride(Size) |
Called to remeasure a control. (Inherited from Control) |
MemberwiseClone() MemberwiseClone() MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
MoveFocus(TraversalRequest) MoveFocus(TraversalRequest) MoveFocus(TraversalRequest) |
Moves the keyboard focus away from this element and to another element in a provided traversal direction. (Inherited from FrameworkElement) |
OnAccessKey(AccessKeyEventArgs) OnAccessKey(AccessKeyEventArgs) OnAccessKey(AccessKeyEventArgs) |
Provides class handling for when an access key that is meaningful for this element is invoked. (Inherited from UIElement) |
OnAlternationCountChanged(Int32, Int32) OnAlternationCountChanged(Int32, Int32) OnAlternationCountChanged(Int32, Int32) |
Invoked when the AlternationCount property changes. |
OnApplyTemplate() OnApplyTemplate() OnApplyTemplate() |
When overridden in a derived class, is invoked whenever application code or internal processes call ApplyTemplate(). (Inherited from FrameworkElement) |
OnChildDesiredSizeChanged(UIElement) OnChildDesiredSizeChanged(UIElement) OnChildDesiredSizeChanged(UIElement) |
Supports layout behavior when a child element is resized. (Inherited from UIElement) |
OnContextMenuClosing(ContextMenuEventArgs) OnContextMenuClosing(ContextMenuEventArgs) OnContextMenuClosing(ContextMenuEventArgs) |
Invoked whenever an unhandled ContextMenuClosing routed event reaches this class in its route. Implement this method to add class handling for this event. (Inherited from FrameworkElement) |
OnContextMenuOpening(ContextMenuEventArgs) OnContextMenuOpening(ContextMenuEventArgs) OnContextMenuOpening(ContextMenuEventArgs) |
Invoked whenever an unhandled ContextMenuOpening routed event reaches this class in its route. Implement this method to add class handling for this event. (Inherited from FrameworkElement) |
OnCreateAutomationPeer() OnCreateAutomationPeer() OnCreateAutomationPeer() |
Returns class-specific AutomationPeer implementations for the Windows Presentation Foundation (WPF) infrastructure. (Inherited from UIElement) |
OnDisplayMemberPathChanged(String, String) OnDisplayMemberPathChanged(String, String) OnDisplayMemberPathChanged(String, String) |
Invoked when the DisplayMemberPath property changes. |
OnDpiChanged(DpiScale, DpiScale) OnDpiChanged(DpiScale, DpiScale) OnDpiChanged(DpiScale, DpiScale) |
Called when the DPI at which this View is rendered changes. (Inherited from Visual) |
OnDragEnter(DragEventArgs) OnDragEnter(DragEventArgs) OnDragEnter(DragEventArgs) |
Invoked when an unhandled DragEnter attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnDragLeave(DragEventArgs) OnDragLeave(DragEventArgs) OnDragLeave(DragEventArgs) |
Invoked when an unhandled DragLeave attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnDragOver(DragEventArgs) OnDragOver(DragEventArgs) OnDragOver(DragEventArgs) |
Invoked when an unhandled DragOver attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnDrop(DragEventArgs) OnDrop(DragEventArgs) OnDrop(DragEventArgs) |
Invoked when an unhandled DragEnter attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnGiveFeedback(GiveFeedbackEventArgs) OnGiveFeedback(GiveFeedbackEventArgs) OnGiveFeedback(GiveFeedbackEventArgs) |
Invoked when an unhandled GiveFeedback attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnGotFocus(RoutedEventArgs) OnGotFocus(RoutedEventArgs) OnGotFocus(RoutedEventArgs) |
Invoked whenever an unhandled GotFocus event reaches this element in its route. (Inherited from FrameworkElement) |
OnGotKeyboardFocus(KeyboardFocusChangedEventArgs) OnGotKeyboardFocus(KeyboardFocusChangedEventArgs) OnGotKeyboardFocus(KeyboardFocusChangedEventArgs) |
Invoked when an unhandled GotKeyboardFocus attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnGotMouseCapture(MouseEventArgs) OnGotMouseCapture(MouseEventArgs) OnGotMouseCapture(MouseEventArgs) |
Invoked when an unhandled GotMouseCapture attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnGotStylusCapture(StylusEventArgs) OnGotStylusCapture(StylusEventArgs) OnGotStylusCapture(StylusEventArgs) |
Invoked when an unhandled GotStylusCapture attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnGotTouchCapture(TouchEventArgs) OnGotTouchCapture(TouchEventArgs) OnGotTouchCapture(TouchEventArgs) |
Provides class handling for the GotTouchCapture routed event that occurs when a touch is captured to this element. (Inherited from UIElement) |
OnGroupStyleSelectorChanged(GroupStyleSelector, GroupStyleSelector) OnGroupStyleSelectorChanged(GroupStyleSelector, GroupStyleSelector) OnGroupStyleSelectorChanged(GroupStyleSelector, GroupStyleSelector) |
Invoked when the GroupStyleSelector property changes. |
OnInitialized(EventArgs) OnInitialized(EventArgs) OnInitialized(EventArgs) |
Raises the Initialized event. This method is invoked whenever IsInitialized is set to |
OnIsKeyboardFocusedChanged(DependencyPropertyChangedEventArgs) OnIsKeyboardFocusedChanged(DependencyPropertyChangedEventArgs) OnIsKeyboardFocusedChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsKeyboardFocusedChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs) OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs) OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs) |
Invoked just before the IsKeyboardFocusWithinChanged event is raised by this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsMouseCapturedChanged(DependencyPropertyChangedEventArgs) OnIsMouseCapturedChanged(DependencyPropertyChangedEventArgs) OnIsMouseCapturedChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsMouseCapturedChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsMouseCaptureWithinChanged(DependencyPropertyChangedEventArgs) OnIsMouseCaptureWithinChanged(DependencyPropertyChangedEventArgs) OnIsMouseCaptureWithinChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsMouseCaptureWithinChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsMouseDirectlyOverChanged(DependencyPropertyChangedEventArgs) OnIsMouseDirectlyOverChanged(DependencyPropertyChangedEventArgs) OnIsMouseDirectlyOverChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsMouseDirectlyOverChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsStylusCapturedChanged(DependencyPropertyChangedEventArgs) OnIsStylusCapturedChanged(DependencyPropertyChangedEventArgs) OnIsStylusCapturedChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsStylusCapturedChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsStylusCaptureWithinChanged(DependencyPropertyChangedEventArgs) OnIsStylusCaptureWithinChanged(DependencyPropertyChangedEventArgs) OnIsStylusCaptureWithinChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsStylusCaptureWithinChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnIsStylusDirectlyOverChanged(DependencyPropertyChangedEventArgs) OnIsStylusDirectlyOverChanged(DependencyPropertyChangedEventArgs) OnIsStylusDirectlyOverChanged(DependencyPropertyChangedEventArgs) |
Invoked when an unhandled IsStylusDirectlyOverChanged event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnItemBindingGroupChanged(BindingGroup, BindingGroup) OnItemBindingGroupChanged(BindingGroup, BindingGroup) OnItemBindingGroupChanged(BindingGroup, BindingGroup) |
Invoked when the ItemBindingGroup property changes. |
OnItemContainerStyleChanged(Style, Style) OnItemContainerStyleChanged(Style, Style) OnItemContainerStyleChanged(Style, Style) |
Invoked when the ItemContainerStyle property changes. |
OnItemContainerStyleSelectorChanged(StyleSelector, StyleSelector) OnItemContainerStyleSelectorChanged(StyleSelector, StyleSelector) OnItemContainerStyleSelectorChanged(StyleSelector, StyleSelector) |
Invoked when the ItemContainerStyleSelector property changes. |
OnItemsChanged(NotifyCollectionChangedEventArgs) OnItemsChanged(NotifyCollectionChangedEventArgs) OnItemsChanged(NotifyCollectionChangedEventArgs) |
Invoked when the Items property changes. |
OnItemsPanelChanged(ItemsPanelTemplate, ItemsPanelTemplate) OnItemsPanelChanged(ItemsPanelTemplate, ItemsPanelTemplate) OnItemsPanelChanged(ItemsPanelTemplate, ItemsPanelTemplate) |
Invoked when the ItemsPanel property changes. |
OnItemsSourceChanged(IEnumerable, IEnumerable) OnItemsSourceChanged(IEnumerable, IEnumerable) OnItemsSourceChanged(IEnumerable, IEnumerable) |
Called when the ItemsSource property changes. |
OnItemStringFormatChanged(String, String) OnItemStringFormatChanged(String, String) OnItemStringFormatChanged(String, String) |
Invoked when the ItemStringFormat property changes. |
OnItemTemplateChanged(DataTemplate, DataTemplate) OnItemTemplateChanged(DataTemplate, DataTemplate) OnItemTemplateChanged(DataTemplate, DataTemplate) |
Invoked when the ItemTemplate property changes. |
OnItemTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector) OnItemTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector) OnItemTemplateSelectorChanged(DataTemplateSelector, DataTemplateSelector) |
Invoked when the ItemTemplateSelector property changes. |
OnKeyDown(KeyEventArgs) OnKeyDown(KeyEventArgs) OnKeyDown(KeyEventArgs) |
Invoked when the KeyDown event is received. |
OnKeyUp(KeyEventArgs) OnKeyUp(KeyEventArgs) OnKeyUp(KeyEventArgs) |
Invoked when an unhandled KeyUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnLostFocus(RoutedEventArgs) OnLostFocus(RoutedEventArgs) OnLostFocus(RoutedEventArgs) |
Raises the LostFocus routed event by using the event data that is provided. (Inherited from UIElement) |
OnLostKeyboardFocus(KeyboardFocusChangedEventArgs) OnLostKeyboardFocus(KeyboardFocusChangedEventArgs) OnLostKeyboardFocus(KeyboardFocusChangedEventArgs) |
Invoked when an unhandled LostKeyboardFocus attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnLostMouseCapture(MouseEventArgs) OnLostMouseCapture(MouseEventArgs) OnLostMouseCapture(MouseEventArgs) |
Invoked when an unhandled LostMouseCapture attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnLostStylusCapture(StylusEventArgs) OnLostStylusCapture(StylusEventArgs) OnLostStylusCapture(StylusEventArgs) |
Invoked when an unhandled LostStylusCapture attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnLostTouchCapture(TouchEventArgs) OnLostTouchCapture(TouchEventArgs) OnLostTouchCapture(TouchEventArgs) |
Provides class handling for the LostTouchCapture routed event that occurs when this element loses a touch capture. (Inherited from UIElement) |
OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs) OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs) OnManipulationBoundaryFeedback(ManipulationBoundaryFeedbackEventArgs) |
Called when the ManipulationBoundaryFeedback event occurs. (Inherited from UIElement) |
OnManipulationCompleted(ManipulationCompletedEventArgs) OnManipulationCompleted(ManipulationCompletedEventArgs) OnManipulationCompleted(ManipulationCompletedEventArgs) |
Called when the ManipulationCompleted event occurs. (Inherited from UIElement) |
OnManipulationDelta(ManipulationDeltaEventArgs) OnManipulationDelta(ManipulationDeltaEventArgs) OnManipulationDelta(ManipulationDeltaEventArgs) |
Called when the ManipulationDelta event occurs. (Inherited from UIElement) |
OnManipulationInertiaStarting(ManipulationInertiaStartingEventArgs) OnManipulationInertiaStarting(ManipulationInertiaStartingEventArgs) OnManipulationInertiaStarting(ManipulationInertiaStartingEventArgs) |
Called when the ManipulationInertiaStarting event occurs. (Inherited from UIElement) |
OnManipulationStarted(ManipulationStartedEventArgs) OnManipulationStarted(ManipulationStartedEventArgs) OnManipulationStarted(ManipulationStartedEventArgs) |
Called when the ManipulationStarted event occurs. (Inherited from UIElement) |
OnManipulationStarting(ManipulationStartingEventArgs) OnManipulationStarting(ManipulationStartingEventArgs) OnManipulationStarting(ManipulationStartingEventArgs) |
Provides class handling for the ManipulationStarting routed event that occurs when the manipulation processor is first created. (Inherited from UIElement) |
OnMouseDoubleClick(MouseButtonEventArgs) OnMouseDoubleClick(MouseButtonEventArgs) OnMouseDoubleClick(MouseButtonEventArgs) |
Raises the MouseDoubleClick routed event. (Inherited from Control) |
OnMouseDown(MouseButtonEventArgs) OnMouseDown(MouseButtonEventArgs) OnMouseDown(MouseButtonEventArgs) |
Invoked when an unhandled MouseDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseEnter(MouseEventArgs) OnMouseEnter(MouseEventArgs) OnMouseEnter(MouseEventArgs) |
Invoked when an unhandled MouseEnter attached event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseLeave(MouseEventArgs) OnMouseLeave(MouseEventArgs) OnMouseLeave(MouseEventArgs) |
Invoked when an unhandled MouseLeave attached event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseLeftButtonDown(MouseButtonEventArgs) OnMouseLeftButtonDown(MouseButtonEventArgs) OnMouseLeftButtonDown(MouseButtonEventArgs) |
Invoked when an unhandled MouseLeftButtonDown routed event is raised on this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseLeftButtonUp(MouseButtonEventArgs) OnMouseLeftButtonUp(MouseButtonEventArgs) OnMouseLeftButtonUp(MouseButtonEventArgs) |
Invoked when an unhandled MouseLeftButtonUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseMove(MouseEventArgs) OnMouseMove(MouseEventArgs) OnMouseMove(MouseEventArgs) |
Invoked when an unhandled MouseMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseRightButtonDown(MouseButtonEventArgs) OnMouseRightButtonDown(MouseButtonEventArgs) OnMouseRightButtonDown(MouseButtonEventArgs) |
Invoked when an unhandled MouseRightButtonDown routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseRightButtonUp(MouseButtonEventArgs) OnMouseRightButtonUp(MouseButtonEventArgs) OnMouseRightButtonUp(MouseButtonEventArgs) |
Invoked when an unhandled MouseRightButtonUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseUp(MouseButtonEventArgs) OnMouseUp(MouseButtonEventArgs) OnMouseUp(MouseButtonEventArgs) |
Invoked when an unhandled MouseUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnMouseWheel(MouseWheelEventArgs) OnMouseWheel(MouseWheelEventArgs) OnMouseWheel(MouseWheelEventArgs) |
Invoked when an unhandled MouseWheel attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewDragEnter(DragEventArgs) OnPreviewDragEnter(DragEventArgs) OnPreviewDragEnter(DragEventArgs) |
Invoked when an unhandled PreviewDragEnter attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewDragLeave(DragEventArgs) OnPreviewDragLeave(DragEventArgs) OnPreviewDragLeave(DragEventArgs) |
Invoked when an unhandled PreviewDragLeave attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewDragOver(DragEventArgs) OnPreviewDragOver(DragEventArgs) OnPreviewDragOver(DragEventArgs) |
Invoked when an unhandled PreviewDragOver attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewDrop(DragEventArgs) OnPreviewDrop(DragEventArgs) OnPreviewDrop(DragEventArgs) |
Invoked when an unhandled PreviewDrop attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewGiveFeedback(GiveFeedbackEventArgs) OnPreviewGiveFeedback(GiveFeedbackEventArgs) OnPreviewGiveFeedback(GiveFeedbackEventArgs) |
Invoked when an unhandled PreviewGiveFeedback attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewGotKeyboardFocus(KeyboardFocusChangedEventArgs) OnPreviewGotKeyboardFocus(KeyboardFocusChangedEventArgs) OnPreviewGotKeyboardFocus(KeyboardFocusChangedEventArgs) |
Invoked when an unhandled PreviewGotKeyboardFocus attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewKeyDown(KeyEventArgs) OnPreviewKeyDown(KeyEventArgs) OnPreviewKeyDown(KeyEventArgs) |
Invoked when an unhandled PreviewKeyDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewKeyUp(KeyEventArgs) OnPreviewKeyUp(KeyEventArgs) OnPreviewKeyUp(KeyEventArgs) |
Invoked when an unhandled PreviewKeyUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewLostKeyboardFocus(KeyboardFocusChangedEventArgs) OnPreviewLostKeyboardFocus(KeyboardFocusChangedEventArgs) OnPreviewLostKeyboardFocus(KeyboardFocusChangedEventArgs) |
Invoked when an unhandled PreviewKeyDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseDoubleClick(MouseButtonEventArgs) OnPreviewMouseDoubleClick(MouseButtonEventArgs) OnPreviewMouseDoubleClick(MouseButtonEventArgs) |
Raises the PreviewMouseDoubleClick routed event. (Inherited from Control) |
OnPreviewMouseDown(MouseButtonEventArgs) OnPreviewMouseDown(MouseButtonEventArgs) OnPreviewMouseDown(MouseButtonEventArgs) |
Invoked when an unhandled PreviewMouseDown attached routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseLeftButtonDown(MouseButtonEventArgs) OnPreviewMouseLeftButtonDown(MouseButtonEventArgs) OnPreviewMouseLeftButtonDown(MouseButtonEventArgs) |
Invoked when an unhandled PreviewMouseLeftButtonDown routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseLeftButtonUp(MouseButtonEventArgs) OnPreviewMouseLeftButtonUp(MouseButtonEventArgs) OnPreviewMouseLeftButtonUp(MouseButtonEventArgs) |
Invoked when an unhandled PreviewMouseLeftButtonUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseMove(MouseEventArgs) OnPreviewMouseMove(MouseEventArgs) OnPreviewMouseMove(MouseEventArgs) |
Invoked when an unhandled PreviewMouseMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseRightButtonDown(MouseButtonEventArgs) OnPreviewMouseRightButtonDown(MouseButtonEventArgs) OnPreviewMouseRightButtonDown(MouseButtonEventArgs) |
Invoked when an unhandled PreviewMouseRightButtonDown routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseRightButtonUp(MouseButtonEventArgs) OnPreviewMouseRightButtonUp(MouseButtonEventArgs) OnPreviewMouseRightButtonUp(MouseButtonEventArgs) |
Invoked when an unhandled PreviewMouseRightButtonUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseUp(MouseButtonEventArgs) OnPreviewMouseUp(MouseButtonEventArgs) OnPreviewMouseUp(MouseButtonEventArgs) |
Invoked when an unhandled PreviewMouseUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewMouseWheel(MouseWheelEventArgs) OnPreviewMouseWheel(MouseWheelEventArgs) OnPreviewMouseWheel(MouseWheelEventArgs) |
Invoked when an unhandled PreviewMouseWheel attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewQueryContinueDrag(QueryContinueDragEventArgs) OnPreviewQueryContinueDrag(QueryContinueDragEventArgs) OnPreviewQueryContinueDrag(QueryContinueDragEventArgs) |
Invoked when an unhandled PreviewQueryContinueDrag attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusButtonDown(StylusButtonEventArgs) OnPreviewStylusButtonDown(StylusButtonEventArgs) OnPreviewStylusButtonDown(StylusButtonEventArgs) |
Invoked when an unhandled PreviewStylusButtonDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusButtonUp(StylusButtonEventArgs) OnPreviewStylusButtonUp(StylusButtonEventArgs) OnPreviewStylusButtonUp(StylusButtonEventArgs) |
Invoked when an unhandled PreviewStylusButtonUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusDown(StylusDownEventArgs) OnPreviewStylusDown(StylusDownEventArgs) OnPreviewStylusDown(StylusDownEventArgs) |
Invoked when an unhandled PreviewStylusDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusInAirMove(StylusEventArgs) OnPreviewStylusInAirMove(StylusEventArgs) OnPreviewStylusInAirMove(StylusEventArgs) |
Invoked when an unhandled PreviewStylusInAirMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusInRange(StylusEventArgs) OnPreviewStylusInRange(StylusEventArgs) OnPreviewStylusInRange(StylusEventArgs) |
Invoked when an unhandled PreviewStylusInRange attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusMove(StylusEventArgs) OnPreviewStylusMove(StylusEventArgs) OnPreviewStylusMove(StylusEventArgs) |
Invoked when an unhandled PreviewStylusMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusOutOfRange(StylusEventArgs) OnPreviewStylusOutOfRange(StylusEventArgs) OnPreviewStylusOutOfRange(StylusEventArgs) |
Invoked when an unhandled PreviewStylusOutOfRange attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusSystemGesture(StylusSystemGestureEventArgs) OnPreviewStylusSystemGesture(StylusSystemGestureEventArgs) OnPreviewStylusSystemGesture(StylusSystemGestureEventArgs) |
Invoked when an unhandled PreviewStylusSystemGesture attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewStylusUp(StylusEventArgs) OnPreviewStylusUp(StylusEventArgs) OnPreviewStylusUp(StylusEventArgs) |
Invoked when an unhandled PreviewStylusUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewTextInput(TextCompositionEventArgs) OnPreviewTextInput(TextCompositionEventArgs) OnPreviewTextInput(TextCompositionEventArgs) |
Invoked when an unhandled PreviewTextInput attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnPreviewTouchDown(TouchEventArgs) OnPreviewTouchDown(TouchEventArgs) OnPreviewTouchDown(TouchEventArgs) |
Provides class handling for the PreviewTouchDown routed event that occurs when a touch presses this element. (Inherited from UIElement) |
OnPreviewTouchMove(TouchEventArgs) OnPreviewTouchMove(TouchEventArgs) OnPreviewTouchMove(TouchEventArgs) |
Provides class handling for the PreviewTouchMove routed event that occurs when a touch moves while inside this element. (Inherited from UIElement) |
OnPreviewTouchUp(TouchEventArgs) OnPreviewTouchUp(TouchEventArgs) OnPreviewTouchUp(TouchEventArgs) |
Provides class handling for the PreviewTouchUp routed event that occurs when a touch is released inside this element. (Inherited from UIElement) |
OnPropertyChanged(DependencyPropertyChangedEventArgs) OnPropertyChanged(DependencyPropertyChangedEventArgs) OnPropertyChanged(DependencyPropertyChangedEventArgs) |
Invoked whenever the effective value of any dependency property on this FrameworkElement has been updated. The specific dependency property that changed is reported in the arguments parameter. Overrides OnPropertyChanged(DependencyPropertyChangedEventArgs). (Inherited from FrameworkElement) |
OnQueryContinueDrag(QueryContinueDragEventArgs) OnQueryContinueDrag(QueryContinueDragEventArgs) OnQueryContinueDrag(QueryContinueDragEventArgs) |
Invoked when an unhandled QueryContinueDrag attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnQueryCursor(QueryCursorEventArgs) OnQueryCursor(QueryCursorEventArgs) OnQueryCursor(QueryCursorEventArgs) |
Invoked when an unhandled QueryCursor attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnRender(DrawingContext) OnRender(DrawingContext) OnRender(DrawingContext) |
When overridden in a derived class, participates in rendering operations that are directed by the layout system. The rendering instructions for this element are not used directly when this method is invoked, and are instead preserved for later asynchronous use by layout and drawing. (Inherited from UIElement) |
OnRenderSizeChanged(SizeChangedInfo) OnRenderSizeChanged(SizeChangedInfo) OnRenderSizeChanged(SizeChangedInfo) |
Raises the SizeChanged event, using the specified information as part of the eventual event data. (Inherited from FrameworkElement) |
OnStyleChanged(Style, Style) OnStyleChanged(Style, Style) OnStyleChanged(Style, Style) |
Invoked when the style in use on this element changes, which will invalidate the layout. (Inherited from FrameworkElement) |
OnStylusButtonDown(StylusButtonEventArgs) OnStylusButtonDown(StylusButtonEventArgs) OnStylusButtonDown(StylusButtonEventArgs) |
Invoked when an unhandled StylusButtonDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusButtonUp(StylusButtonEventArgs) OnStylusButtonUp(StylusButtonEventArgs) OnStylusButtonUp(StylusButtonEventArgs) |
Invoked when an unhandled StylusButtonUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusDown(StylusDownEventArgs) OnStylusDown(StylusDownEventArgs) OnStylusDown(StylusDownEventArgs) |
Invoked when an unhandled StylusDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusEnter(StylusEventArgs) OnStylusEnter(StylusEventArgs) OnStylusEnter(StylusEventArgs) |
Invoked when an unhandled StylusEnter attached event is raised by this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusInAirMove(StylusEventArgs) OnStylusInAirMove(StylusEventArgs) OnStylusInAirMove(StylusEventArgs) |
Invoked when an unhandled StylusInAirMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusInRange(StylusEventArgs) OnStylusInRange(StylusEventArgs) OnStylusInRange(StylusEventArgs) |
Invoked when an unhandled StylusInRange attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusLeave(StylusEventArgs) OnStylusLeave(StylusEventArgs) OnStylusLeave(StylusEventArgs) |
Invoked when an unhandled StylusLeave attached event is raised by this element. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusMove(StylusEventArgs) OnStylusMove(StylusEventArgs) OnStylusMove(StylusEventArgs) |
Invoked when an unhandled StylusMove attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusOutOfRange(StylusEventArgs) OnStylusOutOfRange(StylusEventArgs) OnStylusOutOfRange(StylusEventArgs) |
Invoked when an unhandled StylusOutOfRange attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusSystemGesture(StylusSystemGestureEventArgs) OnStylusSystemGesture(StylusSystemGestureEventArgs) OnStylusSystemGesture(StylusSystemGestureEventArgs) |
Invoked when an unhandled StylusSystemGesture attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnStylusUp(StylusEventArgs) OnStylusUp(StylusEventArgs) OnStylusUp(StylusEventArgs) |
Invoked when an unhandled StylusUp attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event. (Inherited from UIElement) |
OnTemplateChanged(ControlTemplate, ControlTemplate) OnTemplateChanged(ControlTemplate, ControlTemplate) OnTemplateChanged(ControlTemplate, ControlTemplate) |
Called whenever the control's template changes. (Inherited from Control) |
OnTextInput(TextCompositionEventArgs) OnTextInput(TextCompositionEventArgs) OnTextInput(TextCompositionEventArgs) |
Invoked when the TextInput event is received. |
OnToolTipClosing(ToolTipEventArgs) OnToolTipClosing(ToolTipEventArgs) OnToolTipClosing(ToolTipEventArgs) |
Invoked whenever an unhandled ToolTipClosing routed event reaches this class in its route. Implement this method to add class handling for this event. (Inherited from FrameworkElement) |
OnToolTipOpening(ToolTipEventArgs) OnToolTipOpening(ToolTipEventArgs) OnToolTipOpening(ToolTipEventArgs) |
Invoked whenever the ToolTipOpening routed event reaches this class in its route. Implement this method to add class handling for this event. (Inherited from FrameworkElement) |
OnTouchDown(TouchEventArgs) OnTouchDown(TouchEventArgs) OnTouchDown(TouchEventArgs) |
Provides class handling for the TouchDown routed event that occurs when a touch presses inside this element. (Inherited from UIElement) |
OnTouchEnter(TouchEventArgs) OnTouchEnter(TouchEventArgs) OnTouchEnter(TouchEventArgs) |
Provides class handling for the TouchEnter routed event that occurs when a touch moves from outside to inside the bounds of this element. (Inherited from UIElement) |
OnTouchLeave(TouchEventArgs) OnTouchLeave(TouchEventArgs) OnTouchLeave(TouchEventArgs) |
Provides class handling for the TouchLeave routed event that occurs when a touch moves from inside to outside the bounds of this UIElement. (Inherited from UIElement) |
OnTouchMove(TouchEventArgs) OnTouchMove(TouchEventArgs) OnTouchMove(TouchEventArgs) |
Provides class handling for the TouchMove routed event that occurs when a touch moves while inside this element. (Inherited from UIElement) |
OnTouchUp(TouchEventArgs) OnTouchUp(TouchEventArgs) OnTouchUp(TouchEventArgs) |
Provides class handling for the TouchUp routed event that occurs when a touch is released inside this element. (Inherited from UIElement) |
OnVisualChildrenChanged(DependencyObject, DependencyObject) OnVisualChildrenChanged(DependencyObject, DependencyObject) OnVisualChildrenChanged(DependencyObject, DependencyObject) |
Called when the VisualCollection of the visual object is modified. (Inherited from Visual) |
OnVisualParentChanged(DependencyObject) OnVisualParentChanged(DependencyObject) OnVisualParentChanged(DependencyObject) |
Invoked when the parent of this element in the visual tree is changed. Overrides OnVisualParentChanged(DependencyObject). (Inherited from FrameworkElement) |
ParentLayoutInvalidated(UIElement) ParentLayoutInvalidated(UIElement) ParentLayoutInvalidated(UIElement) |
Supports incremental layout implementations in specialized subclasses of FrameworkElement. ParentLayoutInvalidated(UIElement) is invoked when a child element has invalidated a property that is marked in metadata as affecting the parent's measure or arrange passes during layout. (Inherited from FrameworkElement) |
PointFromScreen(Point) PointFromScreen(Point) PointFromScreen(Point) |
Converts a Point in screen coordinates into a Point that represents the current coordinate system of the Visual. (Inherited from Visual) |
PointToScreen(Point) PointToScreen(Point) PointToScreen(Point) |
Converts a Point that represents the current coordinate system of the Visual into a Point in screen coordinates. (Inherited from Visual) |
PredictFocus(FocusNavigationDirection) PredictFocus(FocusNavigationDirection) PredictFocus(FocusNavigationDirection) |
Determines the next element that would receive focus relative to this element for a provided focus movement direction, but does not actually move the focus. (Inherited from FrameworkElement) |
PrepareContainerForItemOverride(DependencyObject, Object) PrepareContainerForItemOverride(DependencyObject, Object) PrepareContainerForItemOverride(DependencyObject, Object) |
Prepares the specified element to display the specified item. |
RaiseEvent(RoutedEventArgs) RaiseEvent(RoutedEventArgs) RaiseEvent(RoutedEventArgs) |
Raises a specific routed event. The RoutedEvent to be raised is identified within the RoutedEventArgs instance that is provided (as the RoutedEvent property of that event data). (Inherited from UIElement) |
ReadLocalValue(DependencyProperty) ReadLocalValue(DependencyProperty) ReadLocalValue(DependencyProperty) |
Returns the local value of a dependency property, if it exists. (Inherited from DependencyObject) |
RegisterName(String, Object) RegisterName(String, Object) RegisterName(String, Object) |
Provides an accessor that simplifies access to the NameScope registration method. (Inherited from FrameworkElement) |
ReleaseAllTouchCaptures() ReleaseAllTouchCaptures() ReleaseAllTouchCaptures() |
Releases all captured touch devices from this element. (Inherited from UIElement) |
ReleaseMouseCapture() ReleaseMouseCapture() ReleaseMouseCapture() |
Releases the mouse capture, if this element held the capture. (Inherited from UIElement) |
ReleaseStylusCapture() ReleaseStylusCapture() ReleaseStylusCapture() |
Releases the stylus device capture, if this element held the capture. (Inherited from UIElement) |
ReleaseTouchCapture(TouchDevice) ReleaseTouchCapture(TouchDevice) ReleaseTouchCapture(TouchDevice) |
Attempts to release the specified touch device from this element. (Inherited from UIElement) |
RemoveHandler(RoutedEvent, Delegate) RemoveHandler(RoutedEvent, Delegate) RemoveHandler(RoutedEvent, Delegate) |
Removes the specified routed event handler from this element. (Inherited from UIElement) |
RemoveLogicalChild(Object) RemoveLogicalChild(Object) RemoveLogicalChild(Object) |
Removes the provided object from this element's logical tree. FrameworkElement updates the affected logical tree parent pointers to keep in sync with this deletion. (Inherited from FrameworkElement) |
RemoveVisualChild(Visual) RemoveVisualChild(Visual) RemoveVisualChild(Visual) |
Removes the parent-child relationship between two visuals. (Inherited from Visual) |
SetBinding(DependencyProperty, BindingBase) SetBinding(DependencyProperty, BindingBase) SetBinding(DependencyProperty, BindingBase) |
Attaches a binding to this element, based on the provided binding object. (Inherited from FrameworkElement) |
SetBinding(DependencyProperty, String) SetBinding(DependencyProperty, String) SetBinding(DependencyProperty, String) |
Attaches a binding to this element, based on the provided source property name as a path qualification to the data source. (Inherited from FrameworkElement) |
SetCurrentValue(DependencyProperty, Object) SetCurrentValue(DependencyProperty, Object) SetCurrentValue(DependencyProperty, Object) |
Sets the value of a dependency property without changing its value source. (Inherited from DependencyObject) |
SetResourceReference(DependencyProperty, Object) SetResourceReference(DependencyProperty, Object) SetResourceReference(DependencyProperty, Object) |
Searches for a resource with the specified name and sets up a resource reference to it for the specified property. (Inherited from FrameworkElement) |
SetValue(DependencyProperty, Object) SetValue(DependencyProperty, Object) SetValue(DependencyProperty, Object) |
Sets the local value of a dependency property, specified by its dependency property identifier. (Inherited from DependencyObject) |
SetValue(DependencyPropertyKey, Object) SetValue(DependencyPropertyKey, Object) SetValue(DependencyPropertyKey, Object) |
Sets the local value of a read-only dependency property, specified by the DependencyPropertyKey identifier of the dependency property. (Inherited from DependencyObject) |
ShouldApplyItemContainerStyle(DependencyObject, Object) ShouldApplyItemContainerStyle(DependencyObject, Object) ShouldApplyItemContainerStyle(DependencyObject, Object) |
Returns a value that indicates whether to apply the style from the ItemContainerStyle or ItemContainerStyleSelector property to the container element of the specified item. |
ShouldSerializeCommandBindings() ShouldSerializeCommandBindings() ShouldSerializeCommandBindings() |
Returns whether serialization processes should serialize the contents of the CommandBindings property on instances of this class. (Inherited from UIElement) |
ShouldSerializeGroupStyle() ShouldSerializeGroupStyle() ShouldSerializeGroupStyle() |
Returns a value that indicates whether serialization processes should serialize the effective value of the GroupStyle property. |
ShouldSerializeInputBindings() ShouldSerializeInputBindings() ShouldSerializeInputBindings() |
Returns whether serialization processes should serialize the contents of the InputBindings property on instances of this class. (Inherited from UIElement) |
ShouldSerializeItems() ShouldSerializeItems() ShouldSerializeItems() |
Returns a value that indicates whether serialization processes should serialize the effective value of the Items property. |
ShouldSerializeProperty(DependencyProperty) ShouldSerializeProperty(DependencyProperty) ShouldSerializeProperty(DependencyProperty) |
Returns a value that indicates whether serialization processes should serialize the value for the provided dependency property. (Inherited from DependencyObject) |
ShouldSerializeResources() ShouldSerializeResources() ShouldSerializeResources() |
Returns whether serialization processes should serialize the contents of the Resources property. (Inherited from FrameworkElement) |
ShouldSerializeStyle() ShouldSerializeStyle() ShouldSerializeStyle() |
Returns whether serialization processes should serialize the contents of the Style property. (Inherited from FrameworkElement) |
ShouldSerializeTriggers() ShouldSerializeTriggers() ShouldSerializeTriggers() |
Returns whether serialization processes should serialize the contents of the Triggers property. (Inherited from FrameworkElement) |
ToString() ToString() ToString() |
Provides a string representation of the ItemsControl object. |
TransformToAncestor(Visual) TransformToAncestor(Visual) TransformToAncestor(Visual) |
Returns a transform that can be used to transform coordinates from the Visual to the specified Visual ancestor of the visual object. (Inherited from Visual) |
TransformToAncestor(Visual3D) TransformToAncestor(Visual3D) TransformToAncestor(Visual3D) |
Returns a transform that can be used to transform coordinates from the Visual to the specified Visual3D ancestor of the visual object. (Inherited from Visual) |
TransformToDescendant(Visual) TransformToDescendant(Visual) TransformToDescendant(Visual) |
Returns a transform that can be used to transform coordinates from the Visual to the specified visual object descendant. (Inherited from Visual) |
TransformToVisual(Visual) TransformToVisual(Visual) TransformToVisual(Visual) |
Returns a transform that can be used to transform coordinates from the Visual to the specified visual object. (Inherited from Visual) |
TranslatePoint(Point, UIElement) TranslatePoint(Point, UIElement) TranslatePoint(Point, UIElement) |
Translates a point relative to this element to coordinates that are relative to the specified element. (Inherited from UIElement) |
TryFindResource(Object) TryFindResource(Object) TryFindResource(Object) |
Searches for a resource with the specified key, and returns that resource if found. (Inherited from FrameworkElement) |
UnregisterName(String) UnregisterName(String) UnregisterName(String) |
Simplifies access to the NameScope de-registration method. (Inherited from FrameworkElement) |
UpdateDefaultStyle() UpdateDefaultStyle() UpdateDefaultStyle() |
Reapplies the default style to the current FrameworkElement. (Inherited from FrameworkElement) |
UpdateLayout() UpdateLayout() UpdateLayout() |
Ensures that all visual child elements of this element are properly updated for layout. (Inherited from UIElement) |
VerifyAccess() VerifyAccess() VerifyAccess() |
Enforces that the calling thread has access to this DispatcherObject. (Inherited from DispatcherObject) |
Explicit Interface Implementations
Events
ContextMenuClosing ContextMenuClosing ContextMenuClosing |
Occurs just before any context menu on the element is closed. (Inherited from FrameworkElement) |
ContextMenuOpening ContextMenuOpening ContextMenuOpening |
Occurs when any context menu on the element is opened. (Inherited from FrameworkElement) |
DataContextChanged DataContextChanged DataContextChanged |
Occurs when the data context for this element changes. (Inherited from FrameworkElement) |
DragEnter DragEnter DragEnter |
Occurs when the input system reports an underlying drag event with this element as the drag target. (Inherited from UIElement) |
DragLeave DragLeave DragLeave |
Occurs when the input system reports an underlying drag event with this element as the drag origin. (Inherited from UIElement) |
DragOver DragOver DragOver |
Occurs when the input system reports an underlying drag event with this element as the potential drop target. (Inherited from UIElement) |
Drop Drop Drop |
Occurs when the input system reports an underlying drop event with this element as the drop target. (Inherited from UIElement) |
FocusableChanged FocusableChanged FocusableChanged |
Occurs when the value of the Focusable property changes. (Inherited from UIElement) |
GiveFeedback GiveFeedback GiveFeedback |
Occurs when the input system reports an underlying drag-and-drop event that involves this element. (Inherited from UIElement) |
GotFocus GotFocus GotFocus |
Occurs when this element gets logical focus. (Inherited from UIElement) |
GotKeyboardFocus GotKeyboardFocus GotKeyboardFocus |
Occurs when the keyboard is focused on this element. (Inherited from UIElement) |
GotMouseCapture GotMouseCapture GotMouseCapture |
Occurs when this element captures the mouse. (Inherited from UIElement) |
GotStylusCapture GotStylusCapture GotStylusCapture |
Occurs when this element captures the stylus. (Inherited from UIElement) |
GotTouchCapture GotTouchCapture GotTouchCapture |
Occurs when a touch is captured to this element. (Inherited from UIElement) |
Initialized Initialized Initialized |
Occurs when this FrameworkElement is initialized. This event coincides with cases where the value of the IsInitialized property changes from |
IsEnabledChanged IsEnabledChanged IsEnabledChanged |
Occurs when the value of the IsEnabled property on this element changes. (Inherited from UIElement) |
IsHitTestVisibleChanged IsHitTestVisibleChanged IsHitTestVisibleChanged |
Occurs when the value of the IsHitTestVisible dependency property changes on this element. (Inherited from UIElement) |
IsKeyboardFocusedChanged IsKeyboardFocusedChanged IsKeyboardFocusedChanged |
Occurs when the value of the IsKeyboardFocused property changes on this element. (Inherited from UIElement) |
IsKeyboardFocusWithinChanged IsKeyboardFocusWithinChanged IsKeyboardFocusWithinChanged |
Occurs when the value of the IsKeyboardFocusWithinChanged property changes on this element. (Inherited from UIElement) |
IsMouseCapturedChanged IsMouseCapturedChanged IsMouseCapturedChanged |
Occurs when the value of the IsMouseCaptured property changes on this element. (Inherited from UIElement) |
IsMouseCaptureWithinChanged IsMouseCaptureWithinChanged IsMouseCaptureWithinChanged |
Occurs when the value of the IsMouseCaptureWithinProperty changes on this element. (Inherited from UIElement) |
IsMouseDirectlyOverChanged IsMouseDirectlyOverChanged IsMouseDirectlyOverChanged |
Occurs when the value of the IsMouseDirectlyOver property changes on this element. (Inherited from UIElement) |
IsStylusCapturedChanged IsStylusCapturedChanged IsStylusCapturedChanged |
Occurs when the value of the IsStylusCaptured property changes on this element. (Inherited from UIElement) |
IsStylusCaptureWithinChanged IsStylusCaptureWithinChanged IsStylusCaptureWithinChanged |
Occurs when the value of the IsStylusCaptureWithin property changes on this element. (Inherited from UIElement) |
IsStylusDirectlyOverChanged IsStylusDirectlyOverChanged IsStylusDirectlyOverChanged |
Occurs when the value of the IsStylusDirectlyOver property changes on this element. (Inherited from UIElement) |
IsVisibleChanged IsVisibleChanged IsVisibleChanged |
Occurs when the value of the IsVisible property changes on this element. (Inherited from UIElement) |
KeyDown KeyDown KeyDown |
Occurs when a key is pressed while focus is on this element. (Inherited from UIElement) |
KeyUp KeyUp KeyUp |
Occurs when a key is released while focus is on this element. (Inherited from UIElement) |
LayoutUpdated LayoutUpdated LayoutUpdated |
Occurs when the layout of the various visual elements associated with the current Dispatcher changes. (Inherited from UIElement) |
Loaded Loaded Loaded |
Occurs when the element is laid out, rendered, and ready for interaction. (Inherited from FrameworkElement) |
LostFocus LostFocus LostFocus |
Occurs when this element loses logical focus. (Inherited from UIElement) |
LostKeyboardFocus LostKeyboardFocus LostKeyboardFocus |
Occurs when the keyboard is no longer focused on this element,. (Inherited from UIElement) |
LostMouseCapture LostMouseCapture LostMouseCapture |
Occurs when this element loses mouse capture. (Inherited from UIElement) |
LostStylusCapture LostStylusCapture LostStylusCapture |
Occurs when this element loses stylus capture. (Inherited from UIElement) |
LostTouchCapture LostTouchCapture LostTouchCapture |
Occurs when this element loses a touch capture. (Inherited from UIElement) |
ManipulationBoundaryFeedback ManipulationBoundaryFeedback ManipulationBoundaryFeedback |
Occurs when the manipulation encounters a boundary. (Inherited from UIElement) |
ManipulationCompleted ManipulationCompleted ManipulationCompleted |
Occurs when a manipulation and inertia on the UIElement object is complete. (Inherited from UIElement) |
ManipulationDelta ManipulationDelta ManipulationDelta |
Occurs when the input device changes position during a manipulation. (Inherited from UIElement) |
ManipulationInertiaStarting ManipulationInertiaStarting ManipulationInertiaStarting |
Occurs when the input device loses contact with the UIElement object during a manipulation and inertia begins. (Inherited from UIElement) |
ManipulationStarted ManipulationStarted ManipulationStarted |
Occurs when an input device begins a manipulation on the UIElement object. (Inherited from UIElement) |
ManipulationStarting ManipulationStarting ManipulationStarting |
Occurs when the manipulation processor is first created. (Inherited from UIElement) |
MouseDoubleClick MouseDoubleClick MouseDoubleClick |
Occurs when a mouse button is clicked two or more times. (Inherited from Control) |
MouseDown MouseDown MouseDown |
Occurs when any mouse button is pressed while the pointer is over this element. (Inherited from UIElement) |
MouseEnter MouseEnter MouseEnter |
Occurs when the mouse pointer enters the bounds of this element. (Inherited from UIElement) |
MouseLeave MouseLeave MouseLeave |
Occurs when the mouse pointer leaves the bounds of this element. (Inherited from UIElement) |
MouseLeftButtonDown MouseLeftButtonDown MouseLeftButtonDown |
Occurs when the left mouse button is pressed while the mouse pointer is over this element. (Inherited from UIElement) |
MouseLeftButtonUp MouseLeftButtonUp MouseLeftButtonUp |
Occurs when the left mouse button is released while the mouse pointer is over this element. (Inherited from UIElement) |
MouseMove MouseMove MouseMove |
Occurs when the mouse pointer moves while over this element. (Inherited from UIElement) |
MouseRightButtonDown MouseRightButtonDown MouseRightButtonDown |
Occurs when the right mouse button is pressed while the mouse pointer is over this element. (Inherited from UIElement) |
MouseRightButtonUp MouseRightButtonUp MouseRightButtonUp |
Occurs when the right mouse button is released while the mouse pointer is over this element. (Inherited from UIElement) |
MouseUp MouseUp MouseUp |
Occurs when any mouse button is released over this element. (Inherited from UIElement) |
MouseWheel MouseWheel MouseWheel |
Occurs when the user rotates the mouse wheel while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewDragEnter PreviewDragEnter PreviewDragEnter |
Occurs when the input system reports an underlying drag event with this element as the drag target. (Inherited from UIElement) |
PreviewDragLeave PreviewDragLeave PreviewDragLeave |
Occurs when the input system reports an underlying drag event with this element as the drag origin. (Inherited from UIElement) |
PreviewDragOver PreviewDragOver PreviewDragOver |
Occurs when the input system reports an underlying drag event with this element as the potential drop target. (Inherited from UIElement) |
PreviewDrop PreviewDrop PreviewDrop |
Occurs when the input system reports an underlying drop event with this element as the drop target. (Inherited from UIElement) |
PreviewGiveFeedback PreviewGiveFeedback PreviewGiveFeedback |
Occurs when a drag-and-drop operation is started. (Inherited from UIElement) |
PreviewGotKeyboardFocus PreviewGotKeyboardFocus PreviewGotKeyboardFocus |
Occurs when the keyboard is focused on this element. (Inherited from UIElement) |
PreviewKeyDown PreviewKeyDown PreviewKeyDown |
Occurs when a key is pressed while focus is on this element. (Inherited from UIElement) |
PreviewKeyUp PreviewKeyUp PreviewKeyUp |
Occurs when a key is released while focus is on this element. (Inherited from UIElement) |
PreviewLostKeyboardFocus PreviewLostKeyboardFocus PreviewLostKeyboardFocus |
Occurs when the keyboard is no longer focused on this element. (Inherited from UIElement) |
PreviewMouseDoubleClick PreviewMouseDoubleClick PreviewMouseDoubleClick |
Occurs when a user clicks the mouse button two or more times. (Inherited from Control) |
PreviewMouseDown PreviewMouseDown PreviewMouseDown |
Occurs when any mouse button is pressed while the pointer is over this element. (Inherited from UIElement) |
PreviewMouseLeftButtonDown PreviewMouseLeftButtonDown PreviewMouseLeftButtonDown |
Occurs when the left mouse button is pressed while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewMouseLeftButtonUp PreviewMouseLeftButtonUp PreviewMouseLeftButtonUp |
Occurs when the left mouse button is released while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewMouseMove PreviewMouseMove PreviewMouseMove |
Occurs when the mouse pointer moves while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewMouseRightButtonDown PreviewMouseRightButtonDown PreviewMouseRightButtonDown |
Occurs when the right mouse button is pressed while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewMouseRightButtonUp PreviewMouseRightButtonUp PreviewMouseRightButtonUp |
Occurs when the right mouse button is released while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewMouseUp PreviewMouseUp PreviewMouseUp |
Occurs when any mouse button is released while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewMouseWheel PreviewMouseWheel PreviewMouseWheel |
Occurs when the user rotates the mouse wheel while the mouse pointer is over this element. (Inherited from UIElement) |
PreviewQueryContinueDrag PreviewQueryContinueDrag PreviewQueryContinueDrag |
Occurs when there is a change in the keyboard or mouse button state during a drag-and-drop operation. (Inherited from UIElement) |
PreviewStylusButtonDown PreviewStylusButtonDown PreviewStylusButtonDown |
Occurs when the stylus button is pressed while the pointer is over this element. (Inherited from UIElement) |
PreviewStylusButtonUp PreviewStylusButtonUp PreviewStylusButtonUp |
Occurs when the stylus button is released while the pointer is over this element. (Inherited from UIElement) |
PreviewStylusDown PreviewStylusDown PreviewStylusDown |
Occurs when the stylus touches the digitizer while it is over this element. (Inherited from UIElement) |
PreviewStylusInAirMove PreviewStylusInAirMove PreviewStylusInAirMove |
Occurs when the stylus moves over an element without actually touching the digitizer. (Inherited from UIElement) |
PreviewStylusInRange PreviewStylusInRange PreviewStylusInRange |
Occurs when the stylus is close enough to the digitizer to be detected, while over this element. (Inherited from UIElement) |
PreviewStylusMove PreviewStylusMove PreviewStylusMove |
Occurs when the stylus moves while over the element. The stylus must move while being detected by the digitizer to raise this event, otherwise, PreviewStylusInAirMove is raised instead. (Inherited from UIElement) |
PreviewStylusOutOfRange PreviewStylusOutOfRange PreviewStylusOutOfRange |
Occurs when the stylus is too far from the digitizer to be detected. (Inherited from UIElement) |
PreviewStylusSystemGesture PreviewStylusSystemGesture PreviewStylusSystemGesture |
Occurs when a user performs one of several stylus gestures. (Inherited from UIElement) |
PreviewStylusUp PreviewStylusUp PreviewStylusUp |
Occurs when the user raises the stylus off the digitizer while the stylus is over this element. (Inherited from UIElement) |
PreviewTextInput PreviewTextInput PreviewTextInput |
Occurs when this element gets text in a device-independent manner. (Inherited from UIElement) |
PreviewTouchDown PreviewTouchDown PreviewTouchDown |
Occurs when a finger touches the screen while the finger is over this element. (Inherited from UIElement) |
PreviewTouchMove PreviewTouchMove PreviewTouchMove |
Occurs when a finger moves on the screen while the finger is over this element. (Inherited from UIElement) |
PreviewTouchUp PreviewTouchUp PreviewTouchUp |
Occurs when a finger is raised off of the screen while the finger is over this element. (Inherited from UIElement) |
QueryContinueDrag QueryContinueDrag QueryContinueDrag |
Occurs when there is a change in the keyboard or mouse button state during a drag-and-drop operation. (Inherited from UIElement) |
QueryCursor QueryCursor QueryCursor |
Occurs when the cursor is requested to display. This event is raised on an element each time that the mouse pointer moves to a new location, which means the cursor object might need to be changed based on its new position. (Inherited from UIElement) |
RequestBringIntoView RequestBringIntoView RequestBringIntoView |
Occurs when BringIntoView(Rect) is called on this element. (Inherited from FrameworkElement) |
SizeChanged SizeChanged SizeChanged |
Occurs when either the ActualHeight or the ActualWidth properties change value on this element. (Inherited from FrameworkElement) |
SourceUpdated SourceUpdated SourceUpdated |
Occurs when the source value changes for any existing property binding on this element. (Inherited from FrameworkElement) |
StylusButtonDown StylusButtonDown StylusButtonDown |
Occurs when the stylus button is pressed while the pointer is over this element. (Inherited from UIElement) |
StylusButtonUp StylusButtonUp StylusButtonUp |
Occurs when the stylus button is released while the pointer is over this element. (Inherited from UIElement) |
StylusDown StylusDown StylusDown |
Occurs when the stylus touches the digitizer while the stylus is over this element. (Inherited from UIElement) |
StylusEnter StylusEnter StylusEnter |
Occurs when the stylus enters the bounds of this element. (Inherited from UIElement) |
StylusInAirMove StylusInAirMove StylusInAirMove |
Occurs when the stylus moves over an element without actually touching the digitizer. (Inherited from UIElement) |
StylusInRange StylusInRange StylusInRange |
Occurs when the stylus is close enough to the digitizer to be detected, while over this element. (Inherited from UIElement) |
StylusLeave StylusLeave StylusLeave |
Occurs when the stylus leaves the bounds of the element. (Inherited from UIElement) |
StylusMove StylusMove StylusMove |
Occurs when the stylus moves over this element. The stylus must move while on the digitizer to raise this event. Otherwise, StylusInAirMove is raised instead. (Inherited from UIElement) |
StylusOutOfRange StylusOutOfRange StylusOutOfRange |
Occurs when the stylus is too far from the digitizer to be detected, while over this element. (Inherited from UIElement) |
StylusSystemGesture StylusSystemGesture StylusSystemGesture |
Occurs when a user performs one of several stylus gestures. (Inherited from UIElement) |
StylusUp StylusUp StylusUp |
Occurs when the user raises the stylus off the digitizer while it is over this element. (Inherited from UIElement) |
TargetUpdated TargetUpdated TargetUpdated |
Occurs when the target value changes for any property binding on this element. (Inherited from FrameworkElement) |
TextInput TextInput TextInput |
Occurs when this element gets text in a device-independent manner. (Inherited from UIElement) |
ToolTipClosing ToolTipClosing ToolTipClosing |
Occurs just before any tooltip on the element is closed. (Inherited from FrameworkElement) |
ToolTipOpening ToolTipOpening ToolTipOpening |
Occurs when any tooltip on the element is opened. (Inherited from FrameworkElement) |
TouchDown TouchDown TouchDown |
Occurs when a finger touches the screen while the finger is over this element. (Inherited from UIElement) |
TouchEnter TouchEnter TouchEnter |
Occurs when a touch moves from outside to inside the bounds of this element. (Inherited from UIElement) |
TouchLeave TouchLeave TouchLeave |
Occurs when a touch moves from inside to outside the bounds of this element. (Inherited from UIElement) |
TouchMove TouchMove TouchMove |
Occurs when a finger moves on the screen while the finger is over this element. (Inherited from UIElement) |
TouchUp TouchUp TouchUp |
Occurs when a finger is raised off of the screen while the finger is over this element. (Inherited from UIElement) |
Unloaded Unloaded Unloaded |
Occurs when the element is removed from within an element tree of loaded elements. (Inherited from FrameworkElement) |