Class CompletionListPresenter
Represents UI control for completion list.
Inheritance
Namespace: Telerik.Windows.Controls.SyntaxEditor.UI
Assembly: Telerik.Windows.Controls.SyntaxEditor.dll
Syntax
public class CompletionListPresenter : Control, IThemable
Constructors
CompletionListPresenter()
Initializes a new instance of the CompletionListPresenter class.
Declaration
public CompletionListPresenter()
Fields
CompletionListItemsProperty
Registers the CompletionListItems dependency property.
Declaration
public static readonly DependencyProperty CompletionListItemsProperty
Field Value
System.Windows.DependencyProperty
|
SelectedItemProperty
Registers the SelectedItem dependency property.
Declaration
public static readonly DependencyProperty SelectedItemProperty
Field Value
System.Windows.DependencyProperty
|
Properties
CompletionListItems
Gets or sets the completion list items.
Declaration
public ICompletionInfoCollection CompletionListItems { get; set; }
Property Value
ICompletionInfoCollection
The completion list items. |
IsMeasured
Gets a value indicating whether this instance is measured.
Declaration
public bool IsMeasured { get; }
Property Value
System.Boolean
|
SelectedItem
Gets or sets the selected item.
Declaration
public CompletionInfo SelectedItem { get; set; }
Property Value
CompletionInfo
The selected item. |
Methods
DecreaseSelectedIndex()
Decreases the index of the selected.
Declaration
public void DecreaseSelectedIndex()
Filter(String)
Filters the specified filter.
Declaration
public void Filter(string filterParameter)
Parameters
System.String
filterParameter
The filter. |
IncreaseSelectedIndex()
Increases the index of the selected.
Declaration
public void IncreaseSelectedIndex()
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes call System.Windows.FrameworkElement.ApplyTemplate.
Declaration
public override void OnApplyTemplate()
OnInitialized(EventArgs)
Raises the System.Windows.FrameworkElement.Initialized event. This method is invoked whenever System.Windows.FrameworkElement.IsInitialized is set to true internally.
Declaration
protected override void OnInitialized(EventArgs e)
Parameters
System.EventArgs
e
The System.Windows.RoutedEventArgs that contains the event data. |
ResetTheme()
Resets the theme.
Declaration
public void ResetTheme()
UpdateToolTip(Boolean)
Updates the tool tip.
Declaration
public void UpdateToolTip(bool tryOpenToolTip)
Parameters
System.Boolean
tryOpenToolTip
The try open tool tip. |
Events
SelectedItemPropertyChanged
Occurs when [selected item property changed].
Declaration
public event EventHandler SelectedItemPropertyChanged
Event Type
System.EventHandler
|