New to Telerik UI for WPFStart a free 30-day trial

Class OverloadListPresenter represents UI presenter for overload lists.

Definition

Namespace:Telerik.Windows.Controls.SyntaxEditor.UI

Assembly:Telerik.Windows.Controls.SyntaxEditor.dll

Syntax:

C#
public class OverloadListPresenter : Control

Inheritance: objectOverloadListPresenter

Constructors

Initializes a new instance of the OverloadListPresenter class.

C#
public OverloadListPresenter()

Fields

OverloadListItemsProperty

DependencyProperty

Registers the OverloadListItems dependency property.

C#
public static readonly DependencyProperty OverloadListItemsProperty

SelectedIndexTextProperty

DependencyProperty

Registers the SelectedIndexText dependency property.

C#
public static readonly DependencyProperty SelectedIndexTextProperty

SelectedItemProperty

DependencyProperty

Registers the SelectedItem dependency property.

C#
public static readonly DependencyProperty SelectedItemProperty

Properties

Gets or sets the overload list items.

C#
public OverloadInfoCollection OverloadListItems { get; set; }
Property Value:

The overload list items.

Gets the selected index text.

C#
public string SelectedIndexText { get; }
Property Value:

The selected index text.

Gets the selected item.

C#
public OverloadInfo SelectedItem { get; }
Property Value:

The selected item.

Methods

Decreases the index of the selected.

C#
public void DecreaseSelectedIndex()

Increases the index of the selected.

C#
public void IncreaseSelectedIndex()

When overridden in a derived class, is invoked whenever application code or internal processes call .

C#
public override void OnApplyTemplate()

Raises the event. This method is invoked whenever is set to true internally.

C#
protected override void OnInitialized(EventArgs e)
Parameters:eEventArgs

The RoutedEventArgs that contains the event data.

Invoked when an unhandled  routed event is raised on this element. Implement this method to add class handling for this event.

C#
protected override void OnMouseLeftButtonDown(MouseButtonEventArgs e)
Parameters:eMouseButtonEventArgs

The MouseButtonEventArgs that contains the event data. The event data reports that the left mouse button was pressed.

Called when [selected item property changed].

C#
protected virtual void OnSelectedItemPropertyChanged()

Events

Occurs when [selected item property changed].

C#
public event EventHandler SelectedItemPropertyChanged