c# – winforms手风琴

有谁知道c# winforms手风琴控制?

优先开源或免费.

解决方法

这是一个基本示例,它使用CheckBox控件,Appearance设置为Button的标题. Download accordion.cs on sourceforge.

演示代码

Accordion acc = new Accordion();
    acc.CheckBoxMargin = new Padding(2);
    acc.ContentMargin = new Padding(15,5,15,5);
    acc.ContentPadding = new Padding(1);
    acc.Insets = new Padding(5);
    acc.ControlBackColor = Color.White;
    acc.ContentBackColor = Color.CadetBlue;

    TableLayoutPanel tlp = new TableLayoutPanel { Dock = DockStyle.Fill,Padding = new Padding(5) };
    tlp.TabStop = true;
    tlp.Controls.Add(new Label { Text = "First Name",TextAlign = ContentAlignment.BottomLeft },0);
    tlp.Controls.Add(new TextBox(),1,0);
    tlp.Controls.Add(new Label { Text = "Last Name",1);
    tlp.Controls.Add(new TextBox(),1);

    acc.Add(tlp,"Contact Info","Enter the client's information.",true);
    acc.Add(new TextBox { Dock = DockStyle.Fill,Multiline = true,BackColor = Color.White },"Memo","Additional Client Info",true,contentBackColor:Color.Transparent);
    acc.Add(new Control(),"Other Info","Miscellaneous information.");

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString("x2"));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable<Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include "WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...