次の方法で共有


ManagementUIColorTable.TaskFormProgressDark プロパティ

定義

派生クラスでオーバーライドされると、進行状況インジケーターの開始色を取得します。

public:
 abstract property System::Drawing::Color TaskFormProgressDark { System::Drawing::Color get(); };
public abstract System.Drawing.Color TaskFormProgressDark { get; }
member this.TaskFormProgressDark : System.Drawing.Color
Public MustOverride ReadOnly Property TaskFormProgressDark As Color

プロパティ値

Color進行状況インジケーターの開始色を示す オブジェクト。

TaskFormProgressDarkプロパティの例を次に示します。 このコード例は、ManagementUIColorTable クラスのために提供されている大規模な例の一部です。

ListViewItem item25 = new ListViewItem();
item25.Text = "TaskFormProgressDark";
item25.SubItems.Add(uiService.Colors.TaskFormProgressDark.ToString());
item25.BackColor = uiService.Colors.TaskFormProgressDark;
ListView.Items.Add(item25);

注釈

このプロパティを使用すると、進行状況インジケーターの開始色を決定できます。 進行状況インジケーターは、タスクの完了のおおよその割合を示します。

適用対象