Overlay Class

DevZest WPF Docking

Overlay Class
Reprents the overlay definition.
Inheritance Hierarchy
SystemObject  System.Windows.ThreadingDispatcherObject
    System.WindowsDependencyObject
      System.WindowsFreezable
        DevZest.Windows.Docking.PrimitivesOverlay

Namespace: DevZest.Windows.Docking.Primitives
Assembly: DevZest.WpfDocking (in DevZest.WpfDocking.dll) Version: 2.5.0.0 (2.5.5912.0)
Syntax
public sealed class Overlay : Freezable
Public NotInheritable Class Overlay
	Inherits Freezable

The Overlay type exposes the following members.

Constructors
  NameDescription
Public methodOverlay
Initializes a new instance of the Overlay class
Top
Properties
  NameDescription
Public propertyAssociatedElement
Gets the associated element.
Public propertyContent
Gets or sets the data used to generate the overlay UI.
Public propertyContentTemplate
Gets or sets the template used to display the content of the overlay.
Public propertyContentTemplateSelector
Gets or sets the DataTemplateSelector, which allows the application writer to provide custom logic for choosing the template that is used to display the content of the overlay.
Public propertyIsFloatingWindowPreview
Gets or sets the value indicates whether the overlay is floating window preview.
Top
Fields
  NameDescription
Public fieldStatic memberAssociatedElementProperty
Identifies the AssociatedElement dependency property.
Public fieldStatic memberContentProperty
Identifies the Content dependency property.
Public fieldStatic memberContentTemplateProperty
Identifies the ContentTemplate dependency property.
Public fieldStatic memberContentTemplateSelectorProperty
Identifies the ContentTemplateSelector dependency property.
Public fieldStatic memberIsFloatingWindowPreviewProperty
Identifies the IsFloatingWindowPreview dependency property.
Top
Remarks
You can attach Overlay object to FrameworkElement by setting DockManager.Overlay attached property. Once Overlay object attached, a ContentPresenter will be generated on top of the associated element.
See Also