├── .gitattributes ├── .gitignore ├── ExpandCollapsePanel.sln ├── ExpandCollapsePanelDemo ├── Demo.Designer.cs ├── Demo.cs ├── Demo.resx ├── ExpandCollapsePanelDemo.csproj ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── app.config ├── LICENSE ├── MakarovDev.ExpandCollapsePanel ├── AdvancedFlowLayoutPanel.cs ├── AdvancedFlowLayoutPanel.resx ├── ExpandCollapseButton.Designer.cs ├── ExpandCollapseButton.cs ├── ExpandCollapseButton.resx ├── ExpandCollapseEventArgs.cs ├── ExpandCollapsePanel.Designer.cs ├── ExpandCollapsePanel.cs ├── ExpandCollapsePanel.resx ├── ExpandCollapsePanelActionList.cs ├── ExpandCollapsePanelDesigner.cs ├── MakarovDev.ExpandCollapsePanel.csproj ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx └── Resources │ ├── 1downarrow1.png │ ├── Expand.png │ ├── Upload.png │ ├── icon-expand.png │ ├── icon_struct_hide_collapsed.png │ └── up_256.png ├── README.md └── static ├── expandcollapsepanel-child-controls.png ├── expandcollapsepanel-forms-designer.png └── expandcollapsepanel-ui-stylings.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/.gitignore -------------------------------------------------------------------------------- /ExpandCollapsePanel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanel.sln -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Demo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Demo.Designer.cs -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Demo.cs -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Demo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Demo.resx -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/ExpandCollapsePanelDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/ExpandCollapsePanelDemo.csproj -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Program.cs -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /ExpandCollapsePanelDemo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/ExpandCollapsePanelDemo/app.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/LICENSE -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/AdvancedFlowLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/AdvancedFlowLayoutPanel.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/AdvancedFlowLayoutPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/AdvancedFlowLayoutPanel.resx -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapseButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapseButton.Designer.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapseButton.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapseButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapseButton.resx -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapseEventArgs.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapsePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapsePanel.Designer.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapsePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapsePanel.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapsePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapsePanel.resx -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapsePanelActionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapsePanelActionList.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/ExpandCollapsePanelDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/ExpandCollapsePanelDesigner.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/MakarovDev.ExpandCollapsePanel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/MakarovDev.ExpandCollapsePanel.csproj -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Properties/Resources.resx -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Resources/1downarrow1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Resources/1downarrow1.png -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Resources/Expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Resources/Expand.png -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Resources/Upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Resources/Upload.png -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Resources/icon-expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Resources/icon-expand.png -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Resources/icon_struct_hide_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Resources/icon_struct_hide_collapsed.png -------------------------------------------------------------------------------- /MakarovDev.ExpandCollapsePanel/Resources/up_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/MakarovDev.ExpandCollapsePanel/Resources/up_256.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/README.md -------------------------------------------------------------------------------- /static/expandcollapsepanel-child-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/static/expandcollapsepanel-child-controls.png -------------------------------------------------------------------------------- /static/expandcollapsepanel-forms-designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/static/expandcollapsepanel-forms-designer.png -------------------------------------------------------------------------------- /static/expandcollapsepanel-ui-stylings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexander-makarov/ExpandCollapsePanel/HEAD/static/expandcollapsepanel-ui-stylings.png --------------------------------------------------------------------------------