Interface IDockingView
Provides an extension point for Addins to provide views displayed on the right side of the Colectica user interface.
Namespace: Algenta.Colectica.ViewModel
Assembly: Algenta.Colectica.ViewModel.dll
Syntax
public interface IDockingView
Remarks
Classes implementing this interface should be derived from a WPF Control or UserControl.
Properties
IsDisplayed
Gets a value indicating whether the view is currently displayed. Colectica will call the setter when the view is displayed or hidden. Implementers can take appropriate action when this property changes, such as taking care not to perform certain actions when the view is not visible to the user.
Declaration
bool IsDisplayed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Title
The title to be displayed at the top of the view.
Declaration
string Title { get; }
Property Value
Type | Description |
---|---|
System.String |