Gets or sets the colors of 'connected' state.
Namespace: ZsZ_Studio.ControlsAssembly: SQL.Connection.Control (in SQL.Connection.Control.dll) Version: 1.0.4947.20663 (1.0.0.0)
public SQLConnectionControlColors ColorsConnected { get; set; }
public SQLConnectionControlColors ColorsConnected { get; set; }
Public Property ColorsConnected As SQLConnectionControlColors
Get
Set
Public Property ColorsConnected As SQLConnectionControlColors
Get
Set
public:
property SQLConnectionControlColors^ ColorsConnected {
SQLConnectionControlColors^ get ();
void set (SQLConnectionControlColors^ value);
}
public:
property SQLConnectionControlColors^ ColorsConnected {
SQLConnectionControlColors^ get ();
void set (SQLConnectionControlColors^ value);
}
Property Value
Type:
SQLConnectionControlColorsUse the
SQLConnectionControlColors class to define new color collection.
(VB.NET) This sample shows how to add new color collection to connected 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.Green, Color.DarkGreen)
scc.ColorsConnected = colors
Me.Controls.Add(scc)
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.Green, Color.DarkGreen)
scc.ColorsConnected = colors
Me.Controls.Add(scc)