ManagementUIColorTable.ContentBackgroundGradientBegin Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
When overridden in a derived class, gets the starting color of the background gradient used in the user interface (UI).
public:
abstract property System::Drawing::Color ContentBackgroundGradientBegin { System::Drawing::Color get(); };
public abstract System.Drawing.Color ContentBackgroundGradientBegin { get; }
member this.ContentBackgroundGradientBegin : System.Drawing.Color
Public MustOverride ReadOnly Property ContentBackgroundGradientBegin As Color
Property Value
A Color object that indicates the starting color of the UI gradient.
Examples
The following example demonstrates the ContentBackgroundGradientBegin property. This code example is part of a larger example provided for the ManagementUIColorTable class.
ListViewItem item11 = new ListViewItem();
item11.Text = "ContentBackgroundGradientBegin";
item11.SubItems.Add(uiService.Colors.ContentBackgroundGradientBegin.ToString());
item11.BackColor = uiService.Colors.ContentBackgroundGradientBegin;
ListView.Items.Add(item11);
Remarks
This property enables you to determine the beginning color of the UI gradient. The gradient starts with the ContentBackgroundGradientBegin property color and transitions to the ContentBackgroundGradientEnd property color.