如何更改或添加图像到staffdotnet.collapsiblepanel面板标题?

时间:2012-02-07 18:05:17

标签: c# .net winforms panel collapse

我正在使用WinForms和.Net 2.0,我正在使用staffdotnet.collapsiblepanel dll创建一个可折叠面板,我想在面板标题中添加一个背面图像。 我已经可以在面板标题中更改颜色,但我不知道如何使用图像。

1 个答案:

答案 0 :(得分:0)

我认为如果不对StaffDotNot.CollapsiblePanel库本身进行细微更改(找到here),就不能这样做。

CollapsiblePanel.Designer.cs中,您会在partial class声明的末尾看到以下声明:

private System.Windows.Forms.Panel titlePanel;
private System.Windows.Forms.PictureBox togglingImage;
private System.Windows.Forms.ImageList collapsiblePanelImageList;
private System.Windows.Forms.Label lblPanelTitle;

您需要将声明private System.Windows.Forms.Panel titlePanel;修改为public System.Windows.Forms.Panel titlePanel;。这将允许您从库下载中包含的测试项目中执行以下代码:

namespace StaffDotNet.CollapsiblePanel.Test
{
    public partial class frmTest : Form
    {
        public frmTest()
        {
            InitializeComponent();
            this.collapsiblePanel1.titlePanel.BackgroundImage = Image.FromFile(@"GreenBubbles.jpg");
        }
    }
}

使用此示例(替换您自己的图像),产生以下输出:

CollapsiblePanelTest - Form1

但是,这可能不是您想要进行的最佳更改(将整个titlePanel对象暴露给您的类)。相反,将property添加到CollapsiblePanel类定义可能更有意义,该定义获取并设置背景图像(同时将titlePanel成员保留为private

//CollapsiblePanel.cs
#region Properties
...
/// <summary>
/// Gets or sets the the background image used in the panel title
/// </summary>
[Category("Collapsible Panel")]
[Description("Gets or sets the background image used in the panel title")]
[DisplayName("Panel Title Background Image")]
public Image PanelBackgroundImage
{
    get { return titlePanel.BackgroundImage; }
    set { titlePanel.BackgroundImage = value; }
}
#endregion

//frmTest.cs
namespace StaffDotNet.CollapsiblePanel.Test
{
    public partial class frmTest : Form
    {
        public frmTest()
        {
            InitializeComponent();

            this.collapsiblePanel1.PanelBackgroundImage = Image.FromFile(@"GreenBubbles.jpg");
        }
    }
}