Interface IDetailsProvider
Provides clients with details.
Namespace: Telerik.Windows.Controls.GridView
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public interface IDetailsProvider : INotifyPropertyChanged
Properties
AreFrozen
Gets a value indicating whether the details should be frozen when scrolling horizontally.
Declaration
bool AreFrozen { get; }
Property Value
System.Boolean
The value indicating whether the details are frozen when scrolling horizontally. |
DataContext
Gets the object to use as DataContext when showing the details.
Declaration
object DataContext { get; }
Property Value
System.Object
The object to use as DataContext when showing the details. |
LoadingContentCallback
Gets the action to perform when the content is loaded.
Declaration
Action<FrameworkElement> LoadingContentCallback { get; }
Property Value
System.Action<System.Windows.FrameworkElement>
The action to perform when the content is loaded. |
Template
Gets or sets the System.Windows.DataTemplate to show details.
Declaration
DataTemplate Template { get; }
Property Value
System.Windows.DataTemplate
The System.Windows.DataTemplate to show details. |
UnloadingContentCallback
Gets the action to perform when the content is unloaded.
Declaration
Action<FrameworkElement> UnloadingContentCallback { get; }
Property Value
System.Action<System.Windows.FrameworkElement>
The action to perform when the content is unloaded. |
Visibility
Gets or sets the System.Windows.Visibility of the details.
Declaration
Visibility Visibility { get; }
Property Value
System.Windows.Visibility
The System.Windows.Visibility of the details. |
VisibilityChangedCallback
Gets the action to perform when the Visibility of the details is changed.
Declaration
Action<FrameworkElement> VisibilityChangedCallback { get; }
Property Value
System.Action<System.Windows.FrameworkElement>
Action to perform when the Visibility of the details is changed. |
VisibilityChangingCallback
Gets the function to perform when the Visibility of the details is about to change.
Declaration
Func<Nullable<Visibility>, bool> VisibilityChangingCallback { get; }
Property Value
System.Func<System.Nullable<System.Windows.Visibility>, System.Boolean>
Action to perform when the Visibility of the details is about to change. |