我希望我的一些链接标签有一个带BackColor的填充,有点像这样:
Click here
但问题是你不能真正有一个可以点击的填充链接标签,你只需要点击文本(如果你在填充区域内点击,点击就不会注册。)
所以另一个选择是让一个Panel里面有linklabel,然后为两个 linklabel和面板控件注册Click事件,以获得可点击的按钮效果。
我们怎么做:
答案 0 :(得分:3)
事实上,LinkLabel
可以包含许多Links
,根据您的要求(可以点击后台),我们必须仅使用LinkLabel
1个链接,因为所有链接具有相同的背景区域,单击背景区域无法告诉我们单击了哪个链接。要处理点击每个链接,我们会处理事件LinkClicked
,但要通过允许用户点击整个背景区域来更改其行为,我们必须处理事件Click
通常。如果需要,添加一些MouseEnter
和MouseLeave
处理程序以更改背景颜色。这是代码:
//Setup the link data for the LinkLabel
linkLabel1.Links.Add(new LinkLabel.Link() {Description = "StackOverflow", LinkData = "http://www.stackoverflow.com"});
linkLabel1.Text = "Stackoverflow";
linkLabel1.BackColor = Color.LightGray;
//Add 10px padding around the link text
linkLabel1.Padding = new Padding(10);
//Do this to change the Cursor to Hand pointer when mouse over the whole link
linkLabel1.Cursor = Cursors.Hand;
//Click event handler for your linkLabel1
private void linkLabel1_Click(object sender, EventArgs e) {
//Try showing the URL which the link refers
//we can use this info to, for example, visit the link
MessageBox.Show(linkLabel1.Links[0].LinkData.ToString());
}
//MouseEnter event handler to change the BackColor accordingly
private void linkLabel1_MouseEnter(object sender, EventArgs e) {
linkLabel1.BackColor = Color.Yellow;
}
//MouseLeave event handler to change the BackColor accordingly
private void linkLabel1_MouseLeave(object sender, EventArgs e){
linkLabel1.BackColor = Color.LightGray;
}
注意:通过自定义方式,Label
可以替换LinkLabel
,我们只需要一些合适的Font
,TextAlign
,{ {1}}(对于Tag
)...
答案 1 :(得分:1)
您可以使用linklabel的“Click”事件而不是使用“LinkClicked事件”来使填充的linklabel可点击。
private void linkLabel1_Click(object sender, EventArgs e)
{
//Your code here
MessageBox.Show("Clicked Me");
}