SQLConnectionControl ColorsDisconnected Property Control Documentation
Gets or sets the colors of 'disconnected' state.

Namespace: ZsZ_Studio.Controls
Assembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
Syntax

public SQLConnectionControlColors ColorsDisconnected { get; set; }

Property Value

Type: SQLConnectionControlColors
Remarks

Use the SQLConnectionControlColors class to define new color collection.
Examples

(VB.NET) This sample shows how to add new color collection to disconnected state.
Dim scc As New ZsZ_Studio.Controls.SQLConnectionControl
scc.Location = New Point(10, 10)

Dim colors As New ZsZ_Studio.Controls.SQLConnectionControlColors(Color.White, Color.Red, Color.DarkRed)
scc.ColorsDisconnected = colors

Me.Controls.Add(scc)
See Also