Class RadBreadcrumbItem
Represents an item in the RadBreadcrumb control.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
[TelerikToolboxCategory("Navigation")]
public class RadBreadcrumbItem : DependencyObject, ISupportInitialize
Constructors
RadBreadcrumbItem()
Initializes a new instance of the RadBreadcrumbItem class.
Declaration
public RadBreadcrumbItem()
Fields
DropDownHeaderProperty
Identifies the DropDownHeader dependency property.
Declaration
public static readonly DependencyProperty DropDownHeaderProperty
Field Value
System.Windows.DependencyProperty
|
HeaderProperty
Identifies the Header dependency property.
Declaration
public static readonly DependencyProperty HeaderProperty
Field Value
System.Windows.DependencyProperty
|
ImageProperty
Identifies the Image dependency property.
Declaration
public static readonly DependencyProperty ImageProperty
Field Value
System.Windows.DependencyProperty
|
ItemsProperty
Identifies the Items dependency property.
Declaration
public static readonly DependencyProperty ItemsProperty
Field Value
System.Windows.DependencyProperty
|
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly DependencyProperty ItemsSourceProperty
Field Value
System.Windows.DependencyProperty
|
TextModePathProperty
Identifies the TextModePath dependency property.
Declaration
public static readonly DependencyProperty TextModePathProperty
Field Value
System.Windows.DependencyProperty
|
Properties
DropDownHeader
Gets or sets the DropDownHeader property.
Declaration
public object DropDownHeader { get; set; }
Property Value
System.Object
|
Header
Gets or sets the Header property.
Declaration
public object Header { get; set; }
Property Value
System.Object
|
Image
Gets or sets the Image property.
Declaration
public ImageSource Image { get; set; }
Property Value
System.Windows.Media.ImageSource
|
Items
Gets a collection containing the current items.
Declaration
public BreadcrumbItemCollection Items { get; set; }
Property Value
BreadcrumbItemCollection
|
ItemsSource
Gets or sets the ItemsSource property.
Declaration
public IEnumerable ItemsSource { get; set; }
Property Value
System.Collections.IEnumerable
|
TextModePath
Gets or sets the TextModePath property.
Declaration
public string TextModePath { get; set; }
Property Value
System.String
|
Methods
BeginInit()
Begins initialization.
Declaration
public void BeginInit()
EndInit()
End initialization.
Declaration
public void EndInit()
OnDropDownHeaderChanged(Object, Object)
Invoked when the DropDownHeader property changes.
Declaration
protected virtual void OnDropDownHeaderChanged(object oldValue, object newValue)
Parameters
System.Object
oldValue
|
System.Object
newValue
|
OnHeaderChanged(Object, Object)
Invoked when the Header property changes.
Declaration
protected virtual void OnHeaderChanged(object oldValue, object newValue)
Parameters
System.Object
oldValue
|
System.Object
newValue
|
OnTextModeChanged(Object, Object)
Invoked when the TextMode property changes.
Declaration
protected virtual void OnTextModeChanged(object oldValue, object newValue)
Parameters
System.Object
oldValue
|
System.Object
newValue
|
ToString()
Return item text value.
Declaration
public override string ToString()
Returns
System.String
|