Color.Name 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得這個 Color 的名稱。
public:
property System::String ^ Name { System::String ^ get(); };
public string Name { get; }
member this.Name : string
Public ReadOnly Property Name As String
屬性值
這個 Color 的名稱。
範例
下列程式代碼範例示範如何使用 Name 屬性。 此範例的設計目的是要與 Windows Forms 搭配使用。 將程式代碼貼到表單中,其中包含名為 Button2
的按鈕,並將方法與按鈕Click的事件產生關聯Button2_Click
。
private:
void Button2_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
Button2->Width = 100;
Button2->Text = String::Format( "Color: {0}", Button2->BackColor.Name );
}
private void Button2_Click(System.Object sender, System.EventArgs e)
{
Button2.Width = 100;
Button2.Text = "Color: "+Button2.BackColor.Name;
}
Private Sub Button2_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button2.Click
Button2.Width = 100
Button2.Text = "Color: " + Button2.BackColor.Name
End Sub
備註
如果色彩是從名稱建立,則這個方法會傳回色彩的使用者定義名稱,或是已知色彩的名稱。 針對自定義色彩,會傳回 RGB 值。