如何增加LinkLable的区域?

时间:2014-01-09 20:55:52

标签: c# winforms

我已经创建了新的UserControl.How我可以增加控制的区域吗?我只能减少这种成功。

此代码可正常运行:

public partial class AdvancedLinkLabel : LinkLabel
{

    public AdvancedLinkLabel()
    {
        InitializeComponent();
    }

    protected override void OnPaint(PaintEventArgs e)
    {                        
        Region = new Region(new Rectangle(0,0, Width - 5, Height - 5));
    }
}

但是这段代码没有做任何事情:

public partial class AdvancedLinkLabel : LinkLabel
{

    public AdvancedLinkLabel()
    {
        InitializeComponent();
    }

    protected override void OnPaint(PaintEventArgs e)
    {                        
        Region = new Region(new Rectangle(0,0, Width + 5, Height + 5)); 
    }
}

请帮助,也许有人知道如何解决这个任务。

0 个答案:

没有答案