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

Represents UI control for completion list.

Definition

Namespace:Telerik.Windows.Controls.SyntaxEditor.UI

Assembly:Telerik.Windows.Controls.SyntaxEditor.dll

Syntax:

C#
public class CompletionListPresenter : Control

Inheritance: objectCompletionListPresenter

Constructors

Initializes a new instance of the CompletionListPresenter class.

C#
public CompletionListPresenter()

Fields

CompletionListItemsProperty

DependencyProperty

Registers the CompletionListItems dependency property.

C#
public static readonly DependencyProperty CompletionListItemsProperty

SelectedItemProperty

DependencyProperty

Registers the SelectedItem dependency property.

C#
public static readonly DependencyProperty SelectedItemProperty

Properties

Gets or sets the completion list items.

C#
public ICompletionInfoCollection CompletionListItems { get; set; }
Property Value:

The completion list items.

Gets a value indicating whether this instance is measured.

C#
public bool IsMeasured { get; }
Property Value:

true if this instance is measured; otherwise, false.

Gets or sets the selected item.

C#
public CompletionInfo SelectedItem { get; set; }
Property Value:

The selected item.

Methods

Decreases the index of the selected.

C#
public void DecreaseSelectedIndex()

Filters the specified filter.

C#
public void Filter(string filterParameter)
Parameters:filterParameterstring

The filter.

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.

Resets the theme.

C#
public void ResetTheme()

Updates the tool tip.

C#
public void UpdateToolTip(bool tryOpenToolTip)
Parameters:tryOpenToolTipbool

The try open tool tip.

Events

Occurs when [selected item property changed].

C#
public event EventHandler SelectedItemPropertyChanged