DigitalData.GUIs.Globix added
This commit is contained in:
@@ -75,7 +75,7 @@ Public Class ClassControls
|
||||
.IndexType = DataType
|
||||
}
|
||||
}
|
||||
oControl.Properties.AppearanceFocused.BackColor = Color.Lime
|
||||
oControl.Properties.AppearanceFocused.BackColor = Color.FromArgb(255, 214, 49)
|
||||
|
||||
If Not String.IsNullOrEmpty(Vorgabe) Then
|
||||
Dim oDefaultValues As New List(Of String)
|
||||
@@ -157,7 +157,7 @@ Public Class ClassControls
|
||||
|
||||
Public Sub OncmbGotFocus(sender As System.Object, e As System.EventArgs)
|
||||
Dim cmb As ComboBox = sender
|
||||
cmb.BackColor = Color.Lime
|
||||
cmb.BackColor = Color.FromArgb(255, 214, 49)
|
||||
End Sub
|
||||
|
||||
Public Sub OncmbLostFocus(sender As System.Object, e As System.EventArgs)
|
||||
@@ -333,7 +333,7 @@ Public Class ClassControls
|
||||
|
||||
Public Sub OnTextBoxFocus(sender As System.Object, e As System.EventArgs)
|
||||
Dim oTextbox As DevExpress.XtraEditors.TextEdit = sender
|
||||
oTextbox.BackColor = Color.Lime
|
||||
oTextbox.BackColor = Color.FromArgb(255, 214, 49)
|
||||
oTextbox.SelectAll()
|
||||
End Sub
|
||||
|
||||
@@ -383,7 +383,7 @@ Public Class ClassControls
|
||||
oPicker.EditValue = Vorgabe
|
||||
End If
|
||||
|
||||
oPicker.Properties.AppearanceFocused.BackColor = Color.Lime
|
||||
oPicker.Properties.AppearanceFocused.BackColor = Color.FromArgb(255, 214, 49)
|
||||
|
||||
Return oPicker
|
||||
End Function
|
||||
|
||||
Reference in New Issue
Block a user