Interface
IBugTrackerConnectionUI

Represents the connection UI to provide to the users on configuring the bug tracker.

Definition

Namespace:ArtOfTest.WebAii.Design.Extensibility.BugTracking

Assembly:ArtOfTest.WebAii.Design.dll

Syntax:

cs-api-definition
public interface IBugTrackerConnectionUI : INotifyPropertyChanged

Inherited Members INotifyPropertyChanged.PropertyChanged

Properties

CanClose

Whether to let the user close the UI. Optional, return 'true' so that the user can click the respective button.

Declaration

cs-api-definition
bool CanClose { get; }

Property Value

bool

CanSave

Whether to allow the user to save the state (makes sense in addition to OnSave implementation). Optional, return 'true' so that the user can always click the respective button.

Declaration

cs-api-definition
bool CanSave { get; }

Property Value

bool

SettingsControl

The control to present to the users so that they can fill in the necessary connection data.

Declaration

cs-api-definition
Control SettingsControl { get; }

Property Value

Control

Methods

OnClose()

Optional, enables customizing the close click handling.

Declaration

cs-api-definition
void OnClose()

OnSave()

Optional, enables customizing the save click handling.

Declaration

cs-api-definition
void OnSave()