ToolStripLabel.ActiveLinkColor 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
활성 링크를 표시하는데 사용된 색을 가져오거나 설정합니다.
public:
property System::Drawing::Color ActiveLinkColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color ActiveLinkColor { get; set; }
member this.ActiveLinkColor : System.Drawing.Color with get, set
Public Property ActiveLinkColor As Color
속성 값
활성 링크를 표시할 색을 나타내는 Color입니다. 기본 색은 시스템에서 지정됩니다. 대개 이 색은 Color.Red
입니다.
예제
다음 코드 예제에는 초기화 하는 방법을 보여 줍니다.는 ToolStripLabel 설정 하 여 링크를 포함 하는 IsLink, LinkColor, ActiveLinkColor, VisitedLinkColor를 LinkVisited 및 LinkBehavior 속성입니다.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
public class Form1 : Form
{
private ToolStripLabel toolStripLabel1;
private ToolStrip toolStrip1;
public Form1()
{
InitializeComponent();
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
private void InitializeComponent()
{
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// toolStrip1
//
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripLabel1});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(292, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
//
// toolStripLabel1
//
this.toolStripLabel1.IsLink = true;
this.toolStripLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline;
this.toolStripLabel1.Name = "toolStripLabel1";
this.toolStripLabel1.Size = new System.Drawing.Size(71, 22);
this.toolStripLabel1.Tag = "http://search.microsoft.com/search/search.aspx?";
this.toolStripLabel1.Text = "Search MSDN";
this.toolStripLabel1.Click += new System.EventHandler(this.toolStripLabel1_Click);
//
// Form1
//
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.toolStrip1);
this.Name = "Form1";
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private void toolStripLabel1_Click(object sender, EventArgs e)
{
ToolStripLabel toolStripLabel1 = (ToolStripLabel)sender;
// Start Internet Explorer and navigate to the URL in the
// tag property.
System.Diagnostics.Process.Start("IEXPLORE.EXE", toolStripLabel1.Tag.ToString());
// Set the LinkVisited property to true to change the color.
toolStripLabel1.LinkVisited = true;
}
}
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private WithEvents toolStripLabel1 As ToolStripLabel
Private toolStrip1 As ToolStrip
Public Sub New()
InitializeComponent()
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.SetCompatibleTextRenderingDefault(False)
Application.Run(New Form1())
End Sub
Private Sub InitializeComponent()
Me.toolStrip1 = New System.Windows.Forms.ToolStrip()
Me.toolStripLabel1 = New System.Windows.Forms.ToolStripLabel()
Me.toolStrip1.SuspendLayout()
Me.SuspendLayout()
'
' toolStrip1
'
Me.toolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.toolStripLabel1})
Me.toolStrip1.Location = New System.Drawing.Point(0, 0)
Me.toolStrip1.Name = "toolStrip1"
Me.toolStrip1.Size = New System.Drawing.Size(292, 25)
Me.toolStrip1.TabIndex = 0
Me.toolStrip1.Text = "toolStrip1"
'
' toolStripLabel1
'
Me.toolStripLabel1.IsLink = True
Me.toolStripLabel1.LinkBehavior = System.Windows.Forms.LinkBehavior.AlwaysUnderline
Me.toolStripLabel1.Name = "toolStripLabel1"
Me.toolStripLabel1.Size = New System.Drawing.Size(71, 22)
Me.toolStripLabel1.Tag = "http://search.microsoft.com/search/search.aspx?"
Me.toolStripLabel1.Text = "Search MSDN"
'
' Form1
'
Me.ClientSize = New System.Drawing.Size(292, 273)
Me.Controls.Add(toolStrip1)
Me.Name = "Form1"
Me.toolStrip1.ResumeLayout(False)
Me.toolStrip1.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Private Sub toolStripLabel1_Click(sender As Object, e As EventArgs) Handles toolStripLabel1.Click
Dim toolStripLabel1 As ToolStripLabel = CType(sender, ToolStripLabel)
' Start Internet Explorer and navigate to the URL in the
' tag property.
System.Diagnostics.Process.Start("IEXPLORE.EXE", toolStripLabel1.Tag.ToString())
' Set the LinkVisited property to true to change the color.
toolStripLabel1.LinkVisited = True
End Sub
End Class
설명
활성 링크를 클릭 하 고 있는 링크를입니다. 눌러진된 상태 비슷합니다는 Button 제어 합니다. 이 속성을 사용 하 여 링크 하는 동안 클릭 중인 링크에 표시 되는 색을 지정할 수 있습니다.
링크와 관련 된 색의 여러 가지가 있습니다. 합니다 LinkColor 에 표시 된 모든 링크의 색을 지정 합니다 LinkLabel 제어 합니다. VisitedLinkColor 속성을 사용 하면 사용자가 방문한 후 링크의 색을 지정할 수 있습니다.
참고
이 속성을 설정할 때 되도록 색 설정한 컨트롤의 배경색을 사용 하 여 충돌 하지 않는 속성의 텍스트가 제대로 표시 되지 않습니다. 예를 들어 컨트롤의 배경색 Color.Red
이 속성을 설정 하 고 Color.Red
, 클릭 되 고 링크의 경우 텍스트를 제대로 다루지 않습니다.