ColorBuilder.BuildColor(IComponent, Control, String) Метод

Определение

Вызывает редактор цветов для построения значения HTML-свойства цвета.

public:
 static System::String ^ BuildColor(System::ComponentModel::IComponent ^ component, System::Windows::Forms::Control ^ owner, System::String ^ initialColor);
public static string BuildColor (System.ComponentModel.IComponent component, System.Windows.Forms.Control owner, string initialColor);
static member BuildColor : System.ComponentModel.IComponent * System.Windows.Forms.Control * string -> string
Public Shared Function BuildColor (component As IComponent, owner As Control, initialColor As String) As String

Параметры

component
IComponent

Компонент IComponent, узел которого должен использоваться для доступа к службам режима разработки.

owner
Control

Элемент управления Control, используемый в качестве родительского элемента управления для окна выбора цвета.

initialColor
String

Цвет, первоначально отображаемый в окне выбора цвета, в допустимом формате цвета HTML.

Возвращаемое значение

String

Значение цвета, представленное в виде строки в формате цвета HTML, или значение null, если служба построителя оказалась недоступной.

Примеры

// Create a parent control.
System::Windows::Forms::Control^ c = gcnew System::Windows::Forms::Control;
c->CreateControl();

// Launch the Color Builder using the specified control
// parent and an initial HTML format (S"RRGGBB") color String*.
System::Web::UI::Design::ColorBuilder::BuildColor( this->Component, c, "405599" );
// Create a parent control.
System.Windows.Forms.Control c = new System.Windows.Forms.Control();            
c.CreateControl();            

// Launch the Color Builder using the specified control 
// parent and an initial HTML format ("RRGGBB") color string.
System.Web.UI.Design.ColorBuilder.BuildColor(this.Component, c, "405599");
' Create a parent control.
Dim c As New System.Windows.Forms.Control()
c.CreateControl()

' Launch the Color Builder using the specified control 
' parent and an initial HTML format ("RRGGBB") color string.
System.Web.UI.Design.ColorBuilder.BuildColor(Me.Component, c, "405599")

Комментарии

Возвращаемая строка, если она отличается null, указывает цвет в допустимом формате цвета HTML. Допустимые форматы включают именованные цвета и коды цветов в формате RGB (#RRGGBB).

Применяется к