Bagikan melalui


ColorBuilder.BuildColor(IComponent, Control, String) Metode

Definisi

Memulai editor warna untuk membangun nilai properti warna 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

Parameter

component
IComponent

Situs IComponent yang akan digunakan untuk mengakses layanan waktu desain.

owner
Control

yang Control digunakan untuk menginduk jendela pemilih.

initialColor
String

Warna awal yang akan ditampilkan di jendela pemilih, dalam format warna HTML yang valid.

Mengembalikan

Nilai warna, dinyatakan sebagai string dalam format warna HTML, atau null jika layanan penyusun tidak dapat diambil.

Contoh

// 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")

Keterangan

String yang dikembalikan, jika selain null, menunjukkan warna dalam format warna HTML yang valid. Format yang valid termasuk warna bernama dan kode warna dalam format RGB (#RRGGBB).

Berlaku untuk