我正在使用WinForms和.Net 2.0,我正在使用staffdotnet.collapsiblepanel dll创建一个可折叠面板,我想在面板标题中添加一个背面图像。 我已经可以在面板标题中更改颜色,但我不知道如何使用图像。
答案 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");
}
}
}
使用此示例(替换您自己的图像),产生以下输出:
但是,这可能不是您想要进行的最佳更改(将整个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");
}
}
}