基本信息
源码名称:dockpanel vb与c#版例子集合
源码大小:1.22M
文件格式:.rar
开发语言:C#
更新时间:2023-07-26
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
dockpanel vb与c#版例子集合
经过我搜集,搜集到了这两个版本的dockpanel例子,vb.net和c#版的,希望对大家有用哦!
文件清单
└── dockpanel
├── DockPanelSkin vb
│ ├── Dependencies
│ │ ├── PropertyGridEx.dll
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ ├── Desktop.ini
│ ├── DockPanelSkin
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── DockPanelSkin.exe
│ │ │ ├── DockPanelSkin.exe.CodeAnalysisLog.xml
│ │ │ ├── DockPanelSkin.vshost.exe
│ │ │ ├── DockPanelSkin.xml
│ │ │ ├── PropertyGridEx.dll
│ │ │ ├── VS2005Extender.dll
│ │ │ ├── VS2005Extender.xml
│ │ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ │ ├── desktop.ico
│ │ ├── DockPanelSkin.vbproj
│ │ ├── DockPanelSkin.vbproj.user
│ │ ├── frmDocument.Designer.vb
│ │ ├── frmDocument.resx
│ │ ├── frmDocument.vb
│ │ ├── frmMain.Designer.vb
│ │ ├── frmMain.resx
│ │ ├── frmMain.vb
│ │ ├── frmProperty.Designer.vb
│ │ ├── frmProperty.resx
│ │ ├── frmProperty.vb
│ │ ├── frmSolution.Designer.vb
│ │ ├── frmSolution.resx
│ │ ├── frmSolution.vb
│ │ └── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ ├── DockPanelSkin.sln
│ └── VS2005Extender
│ ├── Docking
│ │ ├── Controls
│ │ │ ├── PopupButton.Designer.vb
│ │ │ ├── PopupButton.resx
│ │ │ └── PopupButton.vb
│ │ ├── Extender
│ │ │ ├── Extender.vb
│ │ │ ├── FromBase
│ │ │ │ ├── AutoHideStripFromBase.vb
│ │ │ │ ├── AutoHideTabFromBase.vb
│ │ │ │ ├── DockPaneCaptionFromBase.vb
│ │ │ │ ├── DockPaneStripFromBase.vb
│ │ │ │ ├── DockPaneTabFromBase.vb
│ │ │ │ └── Helpers
│ │ │ │ ├── DockHelper.vb
│ │ │ │ ├── DrawHelper.vb
│ │ │ │ └── ResourceHelper.vb
│ │ │ └── Override
│ │ │ ├── AutoHideStripOverride.vb
│ │ │ └── DockPaneStripOverride.vb
│ │ └── Resources
│ │ ├── DockPaneCaption.AutoHideNo.bmp
│ │ ├── DockPaneCaption.AutoHideYes.bmp
│ │ ├── DockPaneCaption.CloseDisabled.bmp
│ │ ├── DockPaneCaption.CloseEnabled.bmp
│ │ ├── DockPaneCaption.OptionsDisabled.bmp
│ │ ├── DockPaneCaption.OptionsEnabled.bmp
│ │ ├── DockPaneStrip.CloseDisabled.bmp
│ │ ├── DockPaneStrip.CloseEnabled.bmp
│ │ ├── DockPaneStrip.OptionsDisabled.bmp
│ │ ├── DockPaneStrip.OptionsEnabled.bmp
│ │ ├── DockPaneStrip.OverflowDisabled.bmp
│ │ └── DockPaneStrip.OverflowEnabled.bmp
│ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ ├── VS2005Extender.vbproj
│ └── VS2005Extender.vbproj.user
└── DockSample c#
├── AssemblyInfo.cs
├── bin
│ └── Debug
│ ├── DockPanel.config
│ ├── DockSample.exe
│ ├── DockSample.pdb
│ ├── DockSample.vshost.exe
│ ├── DockSample.vshost.exe.manifest
│ └── WeifenLuo.WinFormsUI.Docking.dll
├── DockSample
│ ├── AboutDialog.cs
│ ├── Customization
│ │ ├── DockHelper.cs
│ │ ├── Extender.cs
│ │ ├── InertButton.cs
│ │ ├── Resources.cs
│ │ ├── Strings.cs
│ │ ├── VS2003AutoHideStrip.cs
│ │ ├── VS2003DockPaneCaption.cs
│ │ └── VS2003DockPaneStrip.cs
│ ├── DummyDoc.cs
│ ├── DummyDoc.resx
│ ├── DummyOutputWindow.cs
│ ├── DummyPropertyWindow.cs
│ ├── DummyPropertyWindow.resx
│ ├── DummySolutionExplorer.cs
│ ├── DummyTaskList.cs
│ ├── DummyToolbox.cs
│ ├── MainForm2.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── Resources.cs
│ │ └── Settings.cs
│ └── ToolWindow.cs
├── DockSample.csproj
├── DockSample.csproj.user
├── DockSample.Resources.DockPanel.xml
├── DockSample.suo
├── Global.cs
├── obj
│ ├── Debug
│ │ ├── DockSample.csproj.FileListAbsolute.txt
│ │ ├── DockSample.csproj.GenerateResource.Cache
│ │ ├── DockSample.DummyDoc.resources
│ │ ├── DockSample.DummyPropertyWindow.resources
│ │ ├── DockSample.exe
│ │ ├── DockSample.MainForm.resources
│ │ ├── DockSample.pdb
│ │ ├── DockSample.Resources.DockPanel.xml
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── DockSample.csproj.FileListAbsolute.txt
├── UpgradeLog.XML
├── WeifenLuo.WinFormsUI.Docking
│ ├── AssemblyInfo.cs
│ ├── Global.cs
│ ├── resfinder.cs
│ ├── WeifenLuo
│ │ └── WinFormsUI
│ │ └── Docking
│ │ ├── AutoHideStripBase.cs
│ │ ├── DeserializeDockContent.cs
│ │ ├── DockAlignment.cs
│ │ ├── DockAreas.cs
│ │ ├── DockAreasEditor.cs
│ │ ├── DockContentCollection.cs
│ │ ├── DockContent.cs
│ │ ├── DockContentEventArgs.cs
│ │ ├── DockContentHandler.cs
│ │ ├── DockHelper.cs
│ │ ├── DockOutlineBase.cs
│ │ ├── DockPaneCaptionBase.cs
│ │ ├── DockPaneCollection.cs
│ │ ├── DockPane.cs
│ │ ├── DockPanel.cs
│ │ ├── DockPanelExtender.cs
│ │ ├── DockPaneStripBase.cs
│ │ ├── DockState.cs
│ │ ├── DockWindowCollection.cs
│ │ ├── DockWindow.cs
│ │ ├── DocumentStyle.cs
│ │ ├── DragForm.cs
│ │ ├── DrawHelper.cs
│ │ ├── DummyControl.cs
│ │ ├── FloatWindowCollection.cs
│ │ ├── FloatWindow.cs
│ │ ├── GetPersistStringCallback.cs
│ │ ├── IContentFocusManager.cs
│ │ ├── IDockContent.cs
│ │ ├── IDockDragSource.cs
│ │ ├── IDragSource.cs
│ │ ├── InertButtonBase.cs
│ │ ├── INestedPanesContainer.cs
│ │ ├── ISplitterDragSource.cs
│ │ ├── LocalizedCategoryAttribute.cs
│ │ ├── LocalizedDescriptionAttribute.cs
│ │ ├── MeasurePane.cs
│ │ ├── Measures.cs
│ │ ├── NativeMethods.cs
│ │ ├── NestedDockingStatus.cs
│ │ ├── NestedPaneCollection.cs
│ │ ├── ResourceHelper.cs
│ │ ├── Resources.cs
│ │ ├── SplitterBase.cs
│ │ ├── Strings.cs
│ │ ├── VisibleNestedPaneCollection.cs
│ │ ├── VS2005AutoHideStrip.cs
│ │ ├── VS2005DockPaneCaption.cs
│ │ ├── VS2005DockPaneStrip.cs
│ │ ├── Win32
│ │ │ ├── FlagsSetWindowPos.cs
│ │ │ ├── GetWindowLongIndex.cs
│ │ │ ├── HitTest.cs
│ │ │ ├── HookType.cs
│ │ │ ├── Msgs.cs
│ │ │ ├── ScrollBars.cs
│ │ │ ├── ShowWindowStyles.cs
│ │ │ ├── WindowExStyles.cs
│ │ │ └── WindowStyles.cs
│ │ └── Win32Helper.cs
│ ├── WeifenLuo.WinFormsUI.Docking.csproj
│ ├── WeifenLuo.WinFormsUI.Docking.DockPanel.bmp
│ ├── WeifenLuo.WinFormsUI.Docking.Resources.resources
│ └── WeifenLuo.WinFormsUI.Docking.Strings.resources
└── WeifenLuo.WinFormsUI.Docking.dll
31 directories, 183 files
dockpanel vb与c#版例子集合
经过我搜集,搜集到了这两个版本的dockpanel例子,vb.net和c#版的,希望对大家有用哦!
文件清单
└── dockpanel
├── DockPanelSkin vb
│ ├── Dependencies
│ │ ├── PropertyGridEx.dll
│ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ ├── Desktop.ini
│ ├── DockPanelSkin
│ │ ├── bin
│ │ │ └── Release
│ │ │ ├── DockPanelSkin.exe
│ │ │ ├── DockPanelSkin.exe.CodeAnalysisLog.xml
│ │ │ ├── DockPanelSkin.vshost.exe
│ │ │ ├── DockPanelSkin.xml
│ │ │ ├── PropertyGridEx.dll
│ │ │ ├── VS2005Extender.dll
│ │ │ ├── VS2005Extender.xml
│ │ │ └── WeifenLuo.WinFormsUI.Docking.dll
│ │ ├── desktop.ico
│ │ ├── DockPanelSkin.vbproj
│ │ ├── DockPanelSkin.vbproj.user
│ │ ├── frmDocument.Designer.vb
│ │ ├── frmDocument.resx
│ │ ├── frmDocument.vb
│ │ ├── frmMain.Designer.vb
│ │ ├── frmMain.resx
│ │ ├── frmMain.vb
│ │ ├── frmProperty.Designer.vb
│ │ ├── frmProperty.resx
│ │ ├── frmProperty.vb
│ │ ├── frmSolution.Designer.vb
│ │ ├── frmSolution.resx
│ │ ├── frmSolution.vb
│ │ └── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ ├── DockPanelSkin.sln
│ └── VS2005Extender
│ ├── Docking
│ │ ├── Controls
│ │ │ ├── PopupButton.Designer.vb
│ │ │ ├── PopupButton.resx
│ │ │ └── PopupButton.vb
│ │ ├── Extender
│ │ │ ├── Extender.vb
│ │ │ ├── FromBase
│ │ │ │ ├── AutoHideStripFromBase.vb
│ │ │ │ ├── AutoHideTabFromBase.vb
│ │ │ │ ├── DockPaneCaptionFromBase.vb
│ │ │ │ ├── DockPaneStripFromBase.vb
│ │ │ │ ├── DockPaneTabFromBase.vb
│ │ │ │ └── Helpers
│ │ │ │ ├── DockHelper.vb
│ │ │ │ ├── DrawHelper.vb
│ │ │ │ └── ResourceHelper.vb
│ │ │ └── Override
│ │ │ ├── AutoHideStripOverride.vb
│ │ │ └── DockPaneStripOverride.vb
│ │ └── Resources
│ │ ├── DockPaneCaption.AutoHideNo.bmp
│ │ ├── DockPaneCaption.AutoHideYes.bmp
│ │ ├── DockPaneCaption.CloseDisabled.bmp
│ │ ├── DockPaneCaption.CloseEnabled.bmp
│ │ ├── DockPaneCaption.OptionsDisabled.bmp
│ │ ├── DockPaneCaption.OptionsEnabled.bmp
│ │ ├── DockPaneStrip.CloseDisabled.bmp
│ │ ├── DockPaneStrip.CloseEnabled.bmp
│ │ ├── DockPaneStrip.OptionsDisabled.bmp
│ │ ├── DockPaneStrip.OptionsEnabled.bmp
│ │ ├── DockPaneStrip.OverflowDisabled.bmp
│ │ └── DockPaneStrip.OverflowEnabled.bmp
│ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ ├── VS2005Extender.vbproj
│ └── VS2005Extender.vbproj.user
└── DockSample c#
├── AssemblyInfo.cs
├── bin
│ └── Debug
│ ├── DockPanel.config
│ ├── DockSample.exe
│ ├── DockSample.pdb
│ ├── DockSample.vshost.exe
│ ├── DockSample.vshost.exe.manifest
│ └── WeifenLuo.WinFormsUI.Docking.dll
├── DockSample
│ ├── AboutDialog.cs
│ ├── Customization
│ │ ├── DockHelper.cs
│ │ ├── Extender.cs
│ │ ├── InertButton.cs
│ │ ├── Resources.cs
│ │ ├── Strings.cs
│ │ ├── VS2003AutoHideStrip.cs
│ │ ├── VS2003DockPaneCaption.cs
│ │ └── VS2003DockPaneStrip.cs
│ ├── DummyDoc.cs
│ ├── DummyDoc.resx
│ ├── DummyOutputWindow.cs
│ ├── DummyPropertyWindow.cs
│ ├── DummyPropertyWindow.resx
│ ├── DummySolutionExplorer.cs
│ ├── DummyTaskList.cs
│ ├── DummyToolbox.cs
│ ├── MainForm2.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── Resources.cs
│ │ └── Settings.cs
│ └── ToolWindow.cs
├── DockSample.csproj
├── DockSample.csproj.user
├── DockSample.Resources.DockPanel.xml
├── DockSample.suo
├── Global.cs
├── obj
│ ├── Debug
│ │ ├── DockSample.csproj.FileListAbsolute.txt
│ │ ├── DockSample.csproj.GenerateResource.Cache
│ │ ├── DockSample.DummyDoc.resources
│ │ ├── DockSample.DummyPropertyWindow.resources
│ │ ├── DockSample.exe
│ │ ├── DockSample.MainForm.resources
│ │ ├── DockSample.pdb
│ │ ├── DockSample.Resources.DockPanel.xml
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── DockSample.csproj.FileListAbsolute.txt
├── UpgradeLog.XML
├── WeifenLuo.WinFormsUI.Docking
│ ├── AssemblyInfo.cs
│ ├── Global.cs
│ ├── resfinder.cs
│ ├── WeifenLuo
│ │ └── WinFormsUI
│ │ └── Docking
│ │ ├── AutoHideStripBase.cs
│ │ ├── DeserializeDockContent.cs
│ │ ├── DockAlignment.cs
│ │ ├── DockAreas.cs
│ │ ├── DockAreasEditor.cs
│ │ ├── DockContentCollection.cs
│ │ ├── DockContent.cs
│ │ ├── DockContentEventArgs.cs
│ │ ├── DockContentHandler.cs
│ │ ├── DockHelper.cs
│ │ ├── DockOutlineBase.cs
│ │ ├── DockPaneCaptionBase.cs
│ │ ├── DockPaneCollection.cs
│ │ ├── DockPane.cs
│ │ ├── DockPanel.cs
│ │ ├── DockPanelExtender.cs
│ │ ├── DockPaneStripBase.cs
│ │ ├── DockState.cs
│ │ ├── DockWindowCollection.cs
│ │ ├── DockWindow.cs
│ │ ├── DocumentStyle.cs
│ │ ├── DragForm.cs
│ │ ├── DrawHelper.cs
│ │ ├── DummyControl.cs
│ │ ├── FloatWindowCollection.cs
│ │ ├── FloatWindow.cs
│ │ ├── GetPersistStringCallback.cs
│ │ ├── IContentFocusManager.cs
│ │ ├── IDockContent.cs
│ │ ├── IDockDragSource.cs
│ │ ├── IDragSource.cs
│ │ ├── InertButtonBase.cs
│ │ ├── INestedPanesContainer.cs
│ │ ├── ISplitterDragSource.cs
│ │ ├── LocalizedCategoryAttribute.cs
│ │ ├── LocalizedDescriptionAttribute.cs
│ │ ├── MeasurePane.cs
│ │ ├── Measures.cs
│ │ ├── NativeMethods.cs
│ │ ├── NestedDockingStatus.cs
│ │ ├── NestedPaneCollection.cs
│ │ ├── ResourceHelper.cs
│ │ ├── Resources.cs
│ │ ├── SplitterBase.cs
│ │ ├── Strings.cs
│ │ ├── VisibleNestedPaneCollection.cs
│ │ ├── VS2005AutoHideStrip.cs
│ │ ├── VS2005DockPaneCaption.cs
│ │ ├── VS2005DockPaneStrip.cs
│ │ ├── Win32
│ │ │ ├── FlagsSetWindowPos.cs
│ │ │ ├── GetWindowLongIndex.cs
│ │ │ ├── HitTest.cs
│ │ │ ├── HookType.cs
│ │ │ ├── Msgs.cs
│ │ │ ├── ScrollBars.cs
│ │ │ ├── ShowWindowStyles.cs
│ │ │ ├── WindowExStyles.cs
│ │ │ └── WindowStyles.cs
│ │ └── Win32Helper.cs
│ ├── WeifenLuo.WinFormsUI.Docking.csproj
│ ├── WeifenLuo.WinFormsUI.Docking.DockPanel.bmp
│ ├── WeifenLuo.WinFormsUI.Docking.Resources.resources
│ └── WeifenLuo.WinFormsUI.Docking.Strings.resources
└── WeifenLuo.WinFormsUI.Docking.dll
31 directories, 183 files