在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → wpf Dock window

wpf Dock window

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:0.56M
  • 下载次数:42
  • 浏览次数:410
  • 发布时间:2021-01-27
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:cqwnlnlznl
  • 文件格式:.rar
  • 所需积分:1
 相关标签: window Dock wpf C# dark

实例介绍

【实例简介】wpf Dock window 

【实例截图】

from clipboard

【核心代码】

DockingLibrary

├── Backup
│   ├── DockingLibrary
│   │   ├── DockManager.xaml
│   │   ├── DockManager.xaml.cs
│   │   ├── DockPanelSplitter.cs
│   │   ├── DockableContent.cs
│   │   ├── DockableContentTabItemsPanel.cs
│   │   ├── DockablePane.xaml
│   │   ├── DockablePane.xaml.cs
│   │   ├── DockablePaneGroup.cs
│   │   ├── DockingButton.cs
│   │   ├── DockingButtonGroup.cs
│   │   ├── DockingGrid.xaml
│   │   ├── DockingGrid.xaml.cs
│   │   ├── DockingLibrary.csproj
│   │   ├── DocumentContent.cs
│   │   ├── DocumentsPane.xaml
│   │   ├── DocumentsPane.xaml.cs
│   │   ├── DragPaneServices.cs
│   │   ├── FloatingWindow.xaml
│   │   ├── FloatingWindow.xaml.cs
│   │   ├── FloatingWindowHostedPane.cs
│   │   ├── IDropSurface.cs
│   │   ├── ILayoutSerializable.cs
│   │   ├── ManagedContent.cs
│   │   ├── OverlayDockablePane.cs
│   │   ├── OverlayWindow.xaml
│   │   ├── OverlayWindow.xaml.cs
│   │   ├── Pane.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── themes
│   │       ├── DockingLibraryResources.xaml
│   │       └── generic.xaml
│   ├── DockingLibrary.sln
│   └── DockingLibraryDemo
│       ├── App.xaml
│       ├── App.xaml.cs
│       ├── DocWindow.xaml
│       ├── DocWindow.xaml.cs
│       ├── DockingLibraryDemo.csproj
│       ├── ExplorerWindow.xaml
│       ├── ExplorerWindow.xaml.cs
│       ├── ListWindow.xaml
│       ├── ListWindow.xaml.cs
│       ├── MainWindow.xaml
│       ├── MainWindow.xaml.cs
│       ├── Properties
│       │   ├── AssemblyInfo.cs
│       │   ├── Resources.Designer.cs
│       │   ├── Resources.resx
│       │   ├── Settings.Designer.cs
│       │   └── Settings.settings
│       ├── PropertyWindow.xaml
│       ├── PropertyWindow.xaml.cs
│       ├── RecentFile.cs
│       ├── RecentFiles.cs
│       └── app.config
├── Backup1
│   ├── DockingLibrary
│   │   ├── DockManager.xaml
│   │   ├── DockManager.xaml.cs
│   │   ├── DockPanelSplitter.cs
│   │   ├── DockableContent.cs
│   │   ├── DockableContentTabItemsPanel.cs
│   │   ├── DockablePane.xaml
│   │   ├── DockablePane.xaml.cs
│   │   ├── DockablePaneGroup.cs
│   │   ├── DockingButton.cs
│   │   ├── DockingButtonGroup.cs
│   │   ├── DockingGrid.xaml
│   │   ├── DockingGrid.xaml.cs
│   │   ├── DockingLibrary.csproj
│   │   ├── DocumentContent.cs
│   │   ├── DocumentsPane.xaml
│   │   ├── DocumentsPane.xaml.cs
│   │   ├── DragPaneServices.cs
│   │   ├── FloatingWindow.xaml
│   │   ├── FloatingWindow.xaml.cs
│   │   ├── FloatingWindowHostedPane.cs
│   │   ├── IDropSurface.cs
│   │   ├── ILayoutSerializable.cs
│   │   ├── ManagedContent.cs
│   │   ├── OverlayDockablePane.cs
│   │   ├── OverlayWindow.xaml
│   │   ├── OverlayWindow.xaml.cs
│   │   ├── Pane.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   └── themes
│   │       ├── DockingLibraryResources.xaml
│   │       └── generic.xaml
│   ├── DockingLibrary.sln
│   └── DockingLibraryDemo
│       ├── App.xaml
│       ├── App.xaml.cs
│       ├── DocWindow.xaml
│       ├── DocWindow.xaml.cs
│       ├── DockingLibraryDemo.csproj
│       ├── ExplorerWindow.xaml
│       ├── ExplorerWindow.xaml.cs
│       ├── ListWindow.xaml
│       ├── ListWindow.xaml.cs
│       ├── MainWindow.xaml
│       ├── MainWindow.xaml.cs
│       ├── Properties
│       │   ├── AssemblyInfo.cs
│       │   ├── Resources.Designer.cs
│       │   ├── Resources.resx
│       │   ├── Settings.Designer.cs
│       │   └── Settings.settings
│       ├── PropertyWindow.xaml
│       ├── PropertyWindow.xaml.cs
│       ├── RecentFile.cs
│       ├── RecentFiles.cs
│       └── app.config
├── DockingLibrary
│   ├── ClassDiagram1.cd
│   ├── DockContent.cs
│   ├── DockManager.xaml
│   ├── DockManager.xaml.cs
│   ├── DockPane.xaml
│   ├── DockPane.xaml.cs
│   ├── DockPaneGroup.cs
│   ├── DockPanelSplitter.cs
│   ├── DockableContent.cs
│   ├── DockableContentTabItemsPanel.cs
│   ├── DockablePane.cs
│   ├── DockablePane.xaml
│   ├── DockablePane.xaml.cs
│   ├── DockablePaneGroup.cs
│   ├── DockingButton.cs
│   ├── DockingButtonGroup.cs
│   ├── DockingGrid.cs
│   ├── DockingGrid.xaml
│   ├── DockingGrid.xaml.cs
│   ├── DockingLibrary.csproj
│   ├── DocumentContent.cs
│   ├── DocumentsPane.cs
│   ├── DocumentsPane.xaml
│   ├── DocumentsPane.xaml.cs
│   ├── DragPaneServices.cs
│   ├── FloatingWindow.xaml
│   ├── FloatingWindow.xaml.cs
│   ├── FloatingWindowHostedPane.cs
│   ├── IDockPane.cs
│   ├── IDropSurface.cs
│   ├── ILayoutSerializable.cs
│   ├── IPane.cs
│   ├── ManagedContent.cs
│   ├── OverlayDockablePane.cs
│   ├── OverlayWindow.xaml
│   ├── OverlayWindow.xaml.cs
│   ├── Pane.cs
│   ├── Pane.xaml
│   ├── Pane.xaml.cs
│   ├── PaneGroup.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── bin
│   │   ├── Debug
│   │   │   ├── DockingLibrary.dll
│   │   │   └── DockingLibrary.pdb
│   │   └── Release
│   ├── icons
│   │   ├── DockBottom.PNG
│   │   ├── DockLeft.PNG
│   │   ├── DockPane.PNG
│   │   ├── DockRight.PNG
│   │   ├── DockTop.PNG
│   │   ├── Ritaglio.shs
│   │   └── Thumbs.db
│   ├── images
│   │   ├── DockBottom.PNG
│   │   ├── DockLeft.PNG
│   │   ├── DockPane.PNG
│   │   ├── DockRight.PNG
│   │   └── DockTop.PNG
│   ├── obj
│   │   ├── Debug
│   │   │   ├── DesignTimeResolveAssemblyReferences.cache
│   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │   ├── DockManager.baml
│   │   │   ├── DockManager.g.cs
│   │   │   ├── DockManager.g.i.cs
│   │   │   ├── DockablePane.baml
│   │   │   ├── DockablePane.g.cs
│   │   │   ├── DockablePane.g.i.cs
│   │   │   ├── DockingGrid.baml
│   │   │   ├── DockingGrid.g.cs
│   │   │   ├── DockingGrid.g.i.cs
│   │   │   ├── DockingLibrary.Properties.Resources.resources
│   │   │   ├── DockingLibrary.csproj.CoreCompileInputs.cache
│   │   │   ├── DockingLibrary.csproj.FileListAbsolute.txt
│   │   │   ├── DockingLibrary.csproj.GenerateResource.cache
│   │   │   ├── DockingLibrary.csprojAssemblyReference.cache
│   │   │   ├── DockingLibrary.dll
│   │   │   ├── DockingLibrary.g.resources
│   │   │   ├── DockingLibrary.pdb
│   │   │   ├── DockingLibrary_MarkupCompile.cache
│   │   │   ├── DockingLibrary_MarkupCompile.i.cache
│   │   │   ├── DockingLibrary_MarkupCompile.lref
│   │   │   ├── DocumentsPane.baml
│   │   │   ├── DocumentsPane.g.cs
│   │   │   ├── DocumentsPane.g.i.cs
│   │   │   ├── FloatingWindow.baml
│   │   │   ├── FloatingWindow.g.cs
│   │   │   ├── FloatingWindow.g.i.cs
│   │   │   ├── GeneratedInternalTypeHelper.g.cs
│   │   │   ├── GeneratedInternalTypeHelper.g.i.cs
│   │   │   ├── OverlayWindow.baml
│   │   │   ├── OverlayWindow.g.cs
│   │   │   ├── OverlayWindow.g.i.cs
│   │   │   ├── Refactor
│   │   │   ├── TempPE
│   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   └── themes
│   │   │       ├── DockingLibraryResources.baml
│   │   │       └── generic.baml
│   │   ├── DockingLibrary.csproj.FileList.txt
│   │   └── Release
│   │       ├── Refactor
│   │       ├── TempPE
│   │       └── themes
│   └── themes
│       ├── DockingLibraryResources.xaml
│       └── generic.xaml
├── DockingLibrary.sln
├── DockingLibraryDemo
│   ├── App.xaml
│   ├── App.xaml.cs
│   ├── DocWindow.xaml
│   ├── DocWindow.xaml.cs
│   ├── DockingLibraryDemo.csproj
│   ├── ExplorerWindow.xaml
│   ├── ExplorerWindow.xaml.cs
│   ├── Icons
│   │   ├── props.ico
│   │   ├── view_remove.ico
│   │   └── view_tree.ico
│   ├── ListWindow.xaml
│   ├── ListWindow.xaml.cs
│   ├── MainWindow.xaml
│   ├── MainWindow.xaml.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── PropertyWindow.xaml
│   ├── PropertyWindow.xaml.cs
│   ├── RecentFile.cs
│   ├── RecentFiles.cs
│   ├── app.config
│   ├── bin
│   │   ├── Debug
│   │   │   ├── DockingLibrary.dll
│   │   │   ├── DockingLibrary.pdb
│   │   │   ├── DockingLibraryDemo.exe
│   │   │   ├── DockingLibraryDemo.exe.config
│   │   │   └── DockingLibraryDemo.pdb
│   │   └── Release
│   └── obj
│       ├── Debug
│       │   ├── App.g.cs
│       │   ├── App.g.i.cs
│       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │   ├── DocWindow.baml
│       │   ├── DocWindow.g.cs
│       │   ├── DocWindow.g.i.cs
│       │   ├── DockingLibraryDemo.Properties.Resources.resources
│       │   ├── DockingLibraryDemo.csproj.CopyComplete
│       │   ├── DockingLibraryDemo.csproj.CoreCompileInputs.cache
│       │   ├── DockingLibraryDemo.csproj.FileListAbsolute.txt
│       │   ├── DockingLibraryDemo.csproj.GenerateResource.cache
│       │   ├── DockingLibraryDemo.csprojAssemblyReference.cache
│       │   ├── DockingLibraryDemo.exe
│       │   ├── DockingLibraryDemo.g.resources
│       │   ├── DockingLibraryDemo.pdb
│       │   ├── DockingLibraryDemo_MarkupCompile.cache
│       │   ├── DockingLibraryDemo_MarkupCompile.i.cache
│       │   ├── ExplorerWindow.baml
│       │   ├── ExplorerWindow.g.cs
│       │   ├── ExplorerWindow.g.i.cs
│       │   ├── ListWindow.baml
│       │   ├── ListWindow.g.cs
│       │   ├── ListWindow.g.i.cs
│       │   ├── MainWindow.baml
│       │   ├── MainWindow.g.cs
│       │   ├── MainWindow.g.i.cs
│       │   ├── PropertyWindow.baml
│       │   ├── PropertyWindow.g.cs
│       │   ├── PropertyWindow.g.i.cs
│       │   └── TempPE
│       │       └── Properties.Resources.Designer.cs.dll
│       └── Release
│           └── TempPE
├── UpgradeLog.htm
└── UpgradeLog2.htm

40 directories, 272 files


标签: window Dock wpf C# dark

实例下载地址

wpf Dock window

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警