实例介绍
DockPanel Suite是一个受Visual Studio启发的停靠库,专为.NET WinForms设计。
【实例截图】
文件清单
└── dockpanelsuite-45dc73f93eca00ef79e8b30c0041a67defb8b8d6
├── appveyor.bat
├── appveyor.yml
├── CODE_OF_CONDUCT.md
├── dist.all.bat
├── dist.publish2nugetdotorg.bat
├── DockSample
│ ├── AboutDialog.cs
│ ├── AboutDialog.Designer.cs
│ ├── AboutDialog.resx
│ ├── app.config
│ ├── Customization
│ │ └── DockHelper.cs
│ ├── DockSample.csproj
│ ├── DummyDoc.cs
│ ├── DummyDoc.Designer.cs
│ ├── DummyDoc.resx
│ ├── DummyOutputWindow.cs
│ ├── DummyOutputWindow.Designer.cs
│ ├── DummyOutputWindow.resx
│ ├── DummyPropertyWindow.cs
│ ├── DummyPropertyWindow.Designer.cs
│ ├── DummyPropertyWindow.resx
│ ├── DummySolutionExplorer.cs
│ ├── DummySolutionExplorer.Designer.cs
│ ├── DummySolutionExplorer.resx
│ ├── DummyTaskList.cs
│ ├── DummyTaskList.Designer.cs
│ ├── DummyTaskList.resx
│ ├── DummyToolbox.cs
│ ├── DummyToolbox.Designer.cs
│ ├── DummyToolbox.resx
│ ├── Images
│ │ ├── ArrowDown.bmp
│ │ ├── ArrowUp.bmp
│ │ ├── Bitmap.ico
│ │ ├── BlankIcon.ico
│ │ ├── ClosedFolder.ICO
│ │ ├── CSFile.ico
│ │ ├── CSProject.ico
│ │ ├── File.ico
│ │ ├── Form.ico
│ │ ├── Logo.ico
│ │ ├── Mouse.bmp
│ │ ├── msenv22.ico
│ │ ├── New.ico
│ │ ├── OpenFolder.ICO
│ │ ├── Open.ico
│ │ ├── OutputWindow.ico
│ │ ├── PropertyWindow.ico
│ │ ├── Reference.ico
│ │ ├── References.ico
│ │ ├── SolutionExplorer.ico
│ │ ├── SplashScreen.png
│ │ ├── TaskListWindow.ico
│ │ ├── ToolboxWindow.ico
│ │ └── XmlFile.ico
│ ├── license.txt
│ ├── Logo.ico
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ └── DockPanel.xml
│ ├── SplashScreen.cs
│ ├── SplashScreen.Designer.cs
│ ├── SplashScreen.resx
│ ├── ToolWindow.cs
│ ├── ToolWindow.Designer.cs
│ └── ToolWindow.resx
├── license.txt
├── README.md
├── release.ps1
├── sign.ps1
├── Tests
│ ├── PatchControllerTestFixture.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Tests.csproj
│ └── ThemesTestFixture.cs
├── Tests2
│ ├── App.config
│ ├── PatchControllerTestFixture.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Tests2.csproj
├── Tests3
│ ├── App.config
│ ├── PatchControllerTestFixture.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Tests3.csproj
├── WinFormsUI
│ ├── Directory.Build.props
│ ├── Docking
│ │ ├── AutoHideStripBase.cs
│ │ ├── Configuration
│ │ │ └── PatchSection.cs
│ │ ├── DefaultTheme.cs
│ │ ├── DockAreasEditor.cs
│ │ ├── DockContentCollection.cs
│ │ ├── DockContent.cs
│ │ ├── DockContentEventArgs.cs
│ │ ├── DockContentHandler.cs
│ │ ├── DockOutlineBase.cs
│ │ ├── DockPaneCaptionBase.cs
│ │ ├── DockPaneCollection.cs
│ │ ├── DockPane.cs
│ │ ├── DockPanel.Appearance.cs
│ │ ├── DockPanel.AutoHideWindow.cs
│ │ ├── DockPanel.bmp
│ │ ├── DockPanelColorPalette.cs
│ │ ├── DockPanel.cs
│ │ ├── DockPanel.DockDragHandler.cs
│ │ ├── DockPanel.DragHandler.cs
│ │ ├── DockPanelExtender.cs
│ │ ├── DockPanel.FocusManager.cs
│ │ ├── DockPanel.MdiClientController.cs
│ │ ├── DockPanel.Persistor.cs
│ │ ├── DockPanelSkin.cs
│ │ ├── DockPanel.SplitterDragHandler.cs
│ │ ├── DockPane.SplitterControl.cs
│ │ ├── DockPaneStripBase.cs
│ │ ├── DockWindowCollection.cs
│ │ ├── DockWindow.cs
│ │ ├── DragForm.cs
│ │ ├── DrawingRoutines.cs
│ │ ├── DummyControl.cs
│ │ ├── Enums.cs
│ │ ├── FloatWindowCollection.cs
│ │ ├── FloatWindow.cs
│ │ ├── Helpers
│ │ │ ├── DockHelper.cs
│ │ │ ├── DrawHelper.cs
│ │ │ ├── ResourceHelper.cs
│ │ │ └── Win32Helper.cs
│ │ ├── IImageService.cs
│ │ ├── InertButtonBase.cs
│ │ ├── Interfaces.cs
│ │ ├── IPaintingService.cs
│ │ ├── LayoutUtils.cs
│ │ ├── Localization.cs
│ │ ├── Measures.cs
│ │ ├── NestedDockingStatus.cs
│ │ ├── NestedPaneCollection.cs
│ │ ├── PatchController.cs
│ │ ├── SplitterBase.cs
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── ThemeBase.cs
│ │ ├── VisibleNestedPaneCollection.cs
│ │ ├── VisualStudioColorTable.cs
│ │ ├── VisualStudioToolStripExtender.cs
│ │ ├── VisualStudioToolStripExtender.Designer.cs
│ │ ├── VisualStudioToolStripRenderer.cs
│ │ └── Win32
│ │ ├── Enums.cs
│ │ └── NativeMethods.cs
│ ├── dockpanelsuite.snk
│ ├── license.txt
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ThemeVS2003
│ │ ├── InertButton.cs
│ │ ├── Resources
│ │ │ ├── DockPaneCaption_AutoHideNo.png
│ │ │ ├── DockPaneCaption_AutoHideYes.png
│ │ │ ├── DockPaneCaption_CloseDisabled.png
│ │ │ ├── DockPaneCaption_CloseEnabled.png
│ │ │ ├── DockPaneStrip_CloseDisabled.png
│ │ │ ├── DockPaneStrip_CloseEnabled.png
│ │ │ ├── DockPaneStrip_ScrollLeftDisabled.png
│ │ │ ├── DockPaneStrip_ScrollLeftEnabled.png
│ │ │ ├── DockPaneStrip_ScrollRightDisabled.png
│ │ │ └── DockPaneStrip_ScrollRightEnabled.png
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── VS2003AutoHideStrip.cs
│ │ ├── VS2003DockPaneCaption.cs
│ │ ├── VS2003DockPaneStrip.cs
│ │ └── VS2003Theme.cs
│ ├── ThemeVS2003.csproj
│ ├── ThemeVS2005
│ │ ├── Resources
│ │ │ ├── DockIndicator_PaneDiamond_Bottom.png
│ │ │ ├── Dockindicator_PaneDiamond_Fill.png
│ │ │ ├── DockIndicator_PaneDiamond_HotspotIndex.png
│ │ │ ├── DockIndicator_PaneDiamond_HotspotIndex_VS2012.png
│ │ │ ├── DockIndicator_PaneDiamond_Hotspot.png
│ │ │ ├── DockIndicator_PaneDiamond_Left.png
│ │ │ ├── DockIndicator_PaneDiamond.png
│ │ │ ├── DockIndicator_PaneDiamond_Right.png
│ │ │ ├── DockIndicator_PaneDiamond_Top.png
│ │ │ ├── DockIndicator_PanelBottom_Active.png
│ │ │ ├── DockIndicator_PanelBottom.png
│ │ │ ├── DockIndicator_PanelFill_Active.png
│ │ │ ├── DockIndicator_PanelFill.png
│ │ │ ├── DockIndicator_PanelLeft_Active.png
│ │ │ ├── DockIndicator_PanelLeft.png
│ │ │ ├── DockIndicator_PanelRight_Active.png
│ │ │ ├── DockIndicator_PanelRight.png
│ │ │ ├── DockIndicator_PanelTop_Active.png
│ │ │ ├── DockIndicator_PanelTop.png
│ │ │ ├── DockPane_AutoHide.png
│ │ │ ├── DockPane_Close.png
│ │ │ ├── DockPane_Dock.png
│ │ │ ├── DockPane_OptionOverflow.png
│ │ │ └── DockPane_Option.png
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── VS2005AutoHideStrip.cs
│ │ ├── VS2005AutoHideWindowControl.cs
│ │ ├── VS2005AutoHideWindowFactory.cs
│ │ ├── VS2005DockIndicatorFactory.cs
│ │ ├── VS2005DockOutlineFactory.cs
│ │ ├── VS2005DockPaneCaption.cs
│ │ ├── VS2005DockPaneSplitterControlFactory.cs
│ │ ├── VS2005DockPaneStrip.cs
│ │ ├── VS2005DockWindowFactory.cs
│ │ ├── VS2005PaneIndicatorFactory.cs
│ │ ├── VS2005PanelIndicatorFactory.cs
│ │ ├── VS2005Theme.cs
│ │ └── VS2005WindowSplitterControlFactory.cs
│ ├── ThemeVS2005.csproj
│ ├── ThemeVS2005Multithreading
│ │ ├── VS2005MultithreadingAutoHideStrip.cs
│ │ ├── VS2005MultithreadingDockPaneCaption.cs
│ │ ├── VS2005MultithreadingDockPaneStrip.cs
│ │ ├── VS2005MultithreadingPaneIndicator.cs
│ │ ├── VS2005MultithreadingPanelIndicator.cs
│ │ └── VS2005MultithreadingTheme.cs
│ ├── ThemeVS2005Multithreading.csproj
│ ├── ThemeVS2012
│ │ ├── ImageService.cs
│ │ ├── PaintingService.cs
│ │ ├── Resources
│ │ │ ├── DockIndicator_PaneDiamond_HotspotIndex.png
│ │ │ ├── Dockindicator_PaneDiamond_Hotspot.png
│ │ │ ├── MaskArrowBottom.png
│ │ │ ├── MaskArrowLeft.png
│ │ │ ├── MaskArrowRight.png
│ │ │ ├── MaskArrowTop.png
│ │ │ ├── MaskCoreBottom.png
│ │ │ ├── MaskCoreCenter.png
│ │ │ ├── MaskCoreLeft.png
│ │ │ ├── MaskCoreRight.png
│ │ │ ├── MaskCoreTop.png
│ │ │ ├── MaskDockFive.png
│ │ │ ├── MaskDock.png
│ │ │ ├── MaskTabClose.png
│ │ │ ├── MaskTabList.png
│ │ │ ├── MaskTabOverflow.png
│ │ │ ├── MaskToolWindowAutoHide.png
│ │ │ ├── MaskToolWindowClose.png
│ │ │ ├── MaskToolWindowDock.png
│ │ │ ├── MaskToolWindowOption.png
│ │ │ ├── MaskWindowBottom.png
│ │ │ ├── MaskWindowCenter.png
│ │ │ ├── MaskWindowLeft.png
│ │ │ ├── MaskWindowRight.png
│ │ │ ├── MaskWindowTop.png
│ │ │ ├── vs2012blue.vstheme.gz
│ │ │ ├── vs2012dark.vstheme.gz
│ │ │ └── vs2012light.vstheme.gz
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Strings.Designer.cs
│ │ ├── Strings.resx
│ │ ├── VS2012AutoHideStrip.cs
│ │ ├── VS2012AutoHideStripFactory.cs
│ │ ├── VS2012AutoHideWindowControl.cs
│ │ ├── VS2012AutoHideWindowFactory.cs
│ │ ├── VS2012BlueTheme.cs
│ │ ├── VS2012DarkTheme.cs
│ │ ├── VS2012DockIndicatorFactory.cs
│ │ ├── VS2012DockOutlineFactory.cs
│ │ ├── VS2012DockPaneCaption.cs
│ │ ├── VS2012DockPaneCaptionFactory.cs
│ │ ├── VS2012DockPaneCaptionInertButton.cs
│ │ ├── VS2012DockPaneSplitterControlFactory.cs
│ │ ├── VS2012DockPaneStrip.cs
│ │ ├── VS2012DockPaneStripFactory.cs
│ │ ├── VS2012DockWindow.cs
│ │ ├── VS2012DockWindowFactory.cs
│ │ ├── VS2012LightTheme.cs
│ │ ├── VS2012PaletteFactory.cs
│ │ ├── VS2012PaneIndicatorFactory.cs
│ │ ├── VS2012PanelIndicatorFactory.cs
│ │ ├── VS2012SplitterControl.cs
│ │ ├── VS2012ThemeBase.cs
│ │ ├── VS2012WindowSplitterControl.cs
│ │ └── VS2012WindowSplitterControlFactory.cs
│ ├── ThemeVS2012.csproj
│ ├── ThemeVS2013
│ │ ├── Resources
│ │ │ ├── vs2013blue.vstheme.gz
│ │ │ ├── vs2013dark.vstheme.gz
│ │ │ └── vs2013light.vstheme.gz
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── VS2013BlueTheme.cs
│ │ ├── VS2013DarkTheme.cs
│ │ ├── VS2013DockPaneCaption.cs
│ │ ├── VS2013DockPaneCaptionFactory.cs
│ │ ├── VS2013DockPane.cs
│ │ ├── VS2013DockPaneFactory.cs
│ │ ├── VS2013DockPaneSplitterControlFactory.cs
│ │ ├── VS2013DockPaneStrip.cs
│ │ ├── VS2013DockPaneStripFactory.cs
│ │ ├── VS2013LightTheme.cs
│ │ ├── VS2013SplitterControl.cs
│ │ ├── VS2013ThemeBase.cs
│ │ ├── VS2013WindowSplitterControl.cs
│ │ └── VS2013WindowSplitterControlFactory.cs
│ ├── ThemeVS2013.csproj
│ ├── ThemeVS2015
│ │ ├── Resources
│ │ │ ├── vs2015blue.vstheme.gz
│ │ │ ├── vs2015dark.vstheme.gz
│ │ │ └── vs2015light.vstheme.gz
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── VS2015BlueTheme.cs
│ │ ├── VS2015DarkTheme.cs
│ │ ├── VS2015LightTheme.cs
│ │ └── VS2015ThemeBase.cs
│ ├── ThemeVS2015.csproj
│ └── WinFormsUI.csproj
└── WinFormsUI.Docking.sln
29 directories, 311 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论