I have a dialog box with a RadWaitingBar and a RadProgressBar. Before upgrading to Telerik Q1 2011, both of my bars were blue.
After upgrading, my RadProgressBar is now green as the default of the Office2010Silver theme (see attached). How do I change it back to blue?
Looking at my old designer code, it was set to blue using these lines, which now error out:
After upgrading, my RadProgressBar is now green as the default of the Office2010Silver theme (see attached). How do I change it back to blue?
Looking at my old designer code, it was set to blue using these lines, which now error out:
CType
(
Me
.barProgress.GetChildAt(0).GetChildAt(1), Telerik.WinControls.Primitives.ProgressBarPrimitive).BackColor2 = System.Drawing.Color.FromArgb(
CType
(
CType
(153,
Byte
),
Integer
),
CType
(
CType
(225,
Byte
),
Integer
),
CType
(
CType
(238,
Byte
),
Integer
))
CType
(
Me
.barProgress.GetChildAt(0).GetChildAt(1), Telerik.WinControls.Primitives.ProgressBarPrimitive).BackColor3 = System.Drawing.Color.FromArgb(
CType
(
CType
(4,
Byte
),
Integer
),
CType
(
CType
(187,
Byte
),
Integer
),
CType
(
CType
(208,
Byte
),
Integer
))
CType
(
Me
.barProgress.GetChildAt(0).GetChildAt(1), Telerik.WinControls.Primitives.ProgressBarPrimitive).BackColor4 = System.Drawing.Color.FromArgb(
CType
(
CType
(4,
Byte
),
Integer
),
CType
(
CType
(159,
Byte
),
Integer
),
CType
(
CType
(208,
Byte
),
Integer
))
CType
(
Me
.barProgress.GetChildAt(0).GetChildAt(1), Telerik.WinControls.Primitives.ProgressBarPrimitive).BackColor = System.Drawing.Color.FromArgb(
CType
(
CType
(153,
Byte
),
Integer
),
CType
(
CType
(219,
Byte
),
Integer
),
CType
(
CType
(238,
Byte
),
Integer
))
Please advise. Thank you!