实例介绍
Dragablz是一个用于WPF的可拖动和可撕裂标签控件,包括停靠、工具窗口和MDI。
【实例截图】
文件清单
└── Dragablz-e49391310dbe30243218665a6435de4e5c31c2b7
├── Dragablz
│ ├── CanvasOrganiser.cs
│ ├── ContainerCustomisations.cs
│ ├── Converters
│ │ ├── BooleanAndToVisibilityConverter.cs
│ │ ├── EqualityToBooleanConverter.cs
│ │ ├── EqualityToVisibilityConverter.cs
│ │ └── ShowDefaultCloseButtonConverter.cs
│ ├── Core
│ │ ├── CollectionTeaser.cs
│ │ ├── Extensions.cs
│ │ ├── FuncComparer.cs
│ │ ├── HitTest.cs
│ │ ├── InterTabTransfer.cs
│ │ ├── MultiComparer.cs
│ │ ├── Native.cs
│ │ ├── SystemCommand.cs
│ │ ├── TabHeaderDragStartInformation.cs
│ │ └── WindowMessage.cs
│ ├── DefaultInterLayoutClient.cs
│ ├── DefaultInterTabClient.cs
│ ├── Dockablz
│ │ ├── BranchAccessor.cs
│ │ ├── Branch.cs
│ │ ├── BranchItem.cs
│ │ ├── BranchResult.cs
│ │ ├── CouldBeHeaderedStyleSelector.cs
│ │ ├── DropZone.cs
│ │ ├── DropZoneLocation.cs
│ │ ├── Extensions.cs
│ │ ├── Finder.cs
│ │ ├── FloatingItemSnapShot.cs
│ │ ├── FloatRequestedEvent.cs
│ │ ├── FloatTransfer.cs
│ │ ├── LayoutAccessor.cs
│ │ ├── Layout.cs
│ │ ├── LocationReportBuilder.cs
│ │ ├── LocationReport.cs
│ │ ├── LocationReportException.cs
│ │ ├── LocationSnapShot.cs
│ │ ├── TilerCalculator.cs
│ │ └── Tiler.cs
│ ├── DragablzColors.cs
│ ├── Dragablz.csproj
│ ├── DragablzDragCompletedEventArgs.cs
│ ├── DragablzDragDeltaEventArgs.cs
│ ├── DragablzDragStartedEventArgs.cs
│ ├── DragablzIcon.cs
│ ├── DragablzItem.cs
│ ├── DragablzItemEventArgs.cs
│ ├── DragablzItemsControl.cs
│ ├── Dragablz.nuspec
│ ├── DragablzWindow.cs
│ ├── EmptyHeaderSizingHint.cs
│ ├── HeaderedDragablzItem.cs
│ ├── HeaderedItemViewModel.cs
│ ├── HorizontalOrganiser.cs
│ ├── HorizontalPositionMonitor.cs
│ ├── IInterLayoutClient.cs
│ ├── IInterTabClient.cs
│ ├── IItemsOrganiser.cs
│ ├── IManualInterTabClient.cs
│ ├── INewTabHost.cs
│ ├── InterTabController.cs
│ ├── ItemActionCallbackArgs.cs
│ ├── LocationChangedEventArgs.cs
│ ├── LocationHint.cs
│ ├── MoveItemRequest.cs
│ ├── NewTabHost.cs
│ ├── OrderChangedEventArgs.cs
│ ├── PositionMonitor.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Referenceless
│ │ ├── AnonymousDisposable.cs
│ │ ├── DefaultDisposable.cs
│ │ ├── Disposable.cs
│ │ ├── ICancelable.cs
│ │ └── SerialDisposable.cs
│ ├── StackOrganiser.cs
│ ├── StackPositionMonitor.cs
│ ├── StoryboardCompletionListener.cs
│ ├── TabablzControl.cs
│ ├── TabablzHeaderSizeConverter.cs
│ ├── TabablzItemStyleSelector.cs
│ ├── TabEmptiedResponse.cs
│ ├── Themes
│ │ ├── BrushToRadialGradientBrushConverter.cs
│ │ ├── Dockablz.xaml
│ │ ├── Generic.xaml
│ │ ├── MahApps.xaml
│ │ ├── MaterialDesignAssist.cs
│ │ ├── MaterialDesign.xaml
│ │ ├── RippleAssist.cs
│ │ ├── Ripple.cs
│ │ └── SystemCommandIcon.cs
│ ├── Trapezoid.cs
│ ├── VerticalOrganiser.cs
│ └── VerticalPositionMonitor.cs
├── DragablzDemo
│ ├── AnotherCommandImplementation.cs
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── BasicExampleInterTabClient.cs
│ ├── BasicExampleMainModel.cs
│ ├── BasicExampleMainWindow.xaml
│ ├── BasicExampleMainWindow.xaml.cs
│ ├── BasicExampleTemplateModel.cs
│ ├── BasicExampleTemplateWindow.xaml
│ ├── BasicExampleTemplateWindow.xaml.cs
│ ├── Boot.cs
│ ├── BoundExampleInterTabClient.cs
│ ├── BoundExampleModel.cs
│ ├── BoundExampleNewItem.cs
│ ├── BoundExampleWindow.xaml
│ ├── BoundExampleWindow.xaml.cs
│ ├── CustomHeaderViewModel.cs
│ ├── CustomHeader.xaml
│ ├── CustomHeader.xaml.cs
│ ├── DragablzDemo.csproj
│ ├── HeaderAndContentModel.cs
│ ├── LayoutManagementExampleViewModel.cs
│ ├── LayoutManagementExample.xaml
│ ├── LayoutManagementExample.xaml.cs
│ ├── MdiExample.xaml
│ ├── MdiExample.xaml.cs
│ ├── Properties
│ │ ├── Annotations.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── QuickStartWindow.xaml
│ ├── QuickStartWindow.xaml.cs
│ ├── SimpleViewModel.cs
│ ├── TabablzControlProxy.cs
│ └── TreeNode.cs
├── DragablzModernUIDemo
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── DragablzModernUIDemo.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── packages.config
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── Dragablz.sln
├── Dragablz.sln.DotSettings
├── Dragablz.Test
│ ├── Core
│ │ └── CollectionTeaserFixtures.cs
│ ├── Dockablz
│ │ └── TilerCalculatorFixture.cs
│ └── Dragablz.Test.csproj
├── LICENSE
├── README.md
└── Resources
├── android-chrome-36x36.png
├── android-chrome-48x48.png
├── android-chrome-72x72.png
├── apple-touch-icon-57x57.png
├── apple-touch-icon-60x60.png
├── apple-touch-icon-72x72.png
├── apple-touch-icon-76x76.png
├── apple-touch-icon.png
├── apple-touch-icon-precomposed.png
├── browserconfig.xml
├── D32.png
├── D.png
├── favicon-16x16.png
├── favicon-32x32.png
├── favicon.ico
├── favicon.txt
├── manifest.json
├── mstile-150x150.png
├── mstile-310x150.png
└── mstile-70x70.png
16 directories, 172 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论