实例介绍
Blogroll
SimpleFactoryGenerator - 一个简单的工厂源代码生成器,使模式不违反开闭原则。
WpfExtensions - 为Wpf开发提供一些语法糖。
【实例截图】

【核心代码】
文件清单
└── HandyControl-2155d1d5da0a523258919da7c6772e57df4f7df2
├── build
│ ├── build.cake
│ ├── build.config.xml
│ ├── icon.png
│ ├── lang.nuspec.template
│ ├── lib.nuspec.template
│ ├── myget.nuspec.template
│ └── VisualStudioToolsManifest.xml
├── CODE_OF_CONDUCT.md
├── doc
│ ├── _config.yml
│ ├── package.json
│ ├── package-lock.json
│ ├── scaffolds
│ │ ├── draft.md
│ │ ├── page.md
│ │ └── post.md
│ ├── source
│ │ ├── handycontrol
│ │ │ ├── attach
│ │ │ │ ├── backgroundSwitchElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── borderElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── dataGridAttach
│ │ │ │ │ └── index.md
│ │ │ │ ├── dropDownElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── edgeElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── iconElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── iconSwitchElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── imageAttach
│ │ │ │ │ └── index.md
│ │ │ │ ├── index.md
│ │ │ │ ├── infoElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── panelElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── passwordBoxAttach
│ │ │ │ │ └── index.md
│ │ │ │ ├── rectangleAttach
│ │ │ │ │ └── index.md
│ │ │ │ ├── statusSwitchElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── textBlockAttach
│ │ │ │ │ └── index.md
│ │ │ │ ├── tipElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── titleElement
│ │ │ │ │ └── index.md
│ │ │ │ ├── visualElement
│ │ │ │ │ └── index.md
│ │ │ │ └── windowAttach
│ │ │ │ └── index.md
│ │ │ ├── basic_xaml
│ │ │ │ ├── behaviors
│ │ │ │ │ └── index.md
│ │ │ │ ├── brushes
│ │ │ │ │ └── index.md
│ │ │ │ ├── colors
│ │ │ │ │ └── index.md
│ │ │ │ ├── converters
│ │ │ │ │ └── index.md
│ │ │ │ ├── effects
│ │ │ │ │ └── index.md
│ │ │ │ ├── fonts
│ │ │ │ │ └── index.md
│ │ │ │ ├── geometries
│ │ │ │ │ └── index.md
│ │ │ │ ├── index.md
│ │ │ │ ├── paths
│ │ │ │ │ └── index.md
│ │ │ │ └── sizes
│ │ │ │ └── index.md
│ │ │ ├── breaking_changes
│ │ │ │ └── index.md
│ │ │ ├── data
│ │ │ │ ├── GrowlInfo
│ │ │ │ │ └── index.md
│ │ │ │ ├── index.md
│ │ │ │ └── InfoType
│ │ │ │ └── index.md
│ │ │ ├── extend_controls
│ │ │ │ ├── animationPath
│ │ │ │ │ └── index.md
│ │ │ │ ├── badge
│ │ │ │ │ └── index.md
│ │ │ │ ├── blurWindow
│ │ │ │ │ └── index.md
│ │ │ │ ├── buttonGroup
│ │ │ │ │ └── index.md
│ │ │ │ ├── calendarWithClock
│ │ │ │ │ └── index.md
│ │ │ │ ├── card
│ │ │ │ │ └── index.md
│ │ │ │ ├── carousel
│ │ │ │ │ └── index.md
│ │ │ │ ├── chatBubble
│ │ │ │ │ └── index.md
│ │ │ │ ├── checkComboBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── circlePanel
│ │ │ │ │ └── index.md
│ │ │ │ ├── circleProgressBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── clock
│ │ │ │ │ └── index.md
│ │ │ │ ├── colorPicker
│ │ │ │ │ └── index.md
│ │ │ │ ├── comboBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── compareSlider
│ │ │ │ │ └── index.md
│ │ │ │ ├── contextMenuButton
│ │ │ │ │ └── index.md
│ │ │ │ ├── coverFlow
│ │ │ │ │ └── index.md
│ │ │ │ ├── coverView
│ │ │ │ │ └── index.md
│ │ │ │ ├── dashedBorder
│ │ │ │ │ └── index.md
│ │ │ │ ├── datePicker
│ │ │ │ │ └── index.md
│ │ │ │ ├── dateTimePicker
│ │ │ │ │ └── index.md
│ │ │ │ ├── dialog
│ │ │ │ │ └── index.md
│ │ │ │ ├── divider
│ │ │ │ │ └── index.md
│ │ │ │ ├── drawer
│ │ │ │ │ └── index.md
│ │ │ │ ├── flipClock
│ │ │ │ │ └── index.md
│ │ │ │ ├── floatingBlock
│ │ │ │ │ └── index.md
│ │ │ │ ├── gifImage
│ │ │ │ │ └── index.md
│ │ │ │ ├── glowWindow
│ │ │ │ │ └── index.md
│ │ │ │ ├── gotoTop
│ │ │ │ │ └── index.md
│ │ │ │ ├── gravatar
│ │ │ │ │ └── index.md
│ │ │ │ ├── grid
│ │ │ │ │ └── index.md
│ │ │ │ ├── growl
│ │ │ │ │ └── index.md
│ │ │ │ ├── honeycombPanel
│ │ │ │ │ └── index.md
│ │ │ │ ├── imageBlock
│ │ │ │ │ └── index.md
│ │ │ │ ├── imageBrowser
│ │ │ │ │ └── index.md
│ │ │ │ ├── imageSelector
│ │ │ │ │ └── index.md
│ │ │ │ ├── imageViewer
│ │ │ │ │ └── index.md
│ │ │ │ ├── index.md
│ │ │ │ ├── loading
│ │ │ │ │ └── index.md
│ │ │ │ ├── magnifier
│ │ │ │ │ └── index.md
│ │ │ │ ├── messageBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── notification
│ │ │ │ │ └── index.md
│ │ │ │ ├── notifyIcon
│ │ │ │ │ └── index.md
│ │ │ │ ├── numericUpDown
│ │ │ │ │ └── index.md
│ │ │ │ ├── outlineText
│ │ │ │ │ └── index.md
│ │ │ │ ├── pagination
│ │ │ │ │ └── index.md
│ │ │ │ ├── passwordBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── pinBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── popTip
│ │ │ │ │ └── index.md
│ │ │ │ ├── popupWindow
│ │ │ │ │ └── index.md
│ │ │ │ ├── previewSlider
│ │ │ │ │ └── index.md
│ │ │ │ ├── progressButton
│ │ │ │ │ └── index.md
│ │ │ │ ├── propertyGrid
│ │ │ │ │ └── index.md
│ │ │ │ ├── rangeSlider
│ │ │ │ │ └── index.md
│ │ │ │ ├── rate
│ │ │ │ │ └── index.md
│ │ │ │ ├── relativePanel
│ │ │ │ │ └── index.md
│ │ │ │ ├── runningBlock
│ │ │ │ │ └── index.md
│ │ │ │ ├── screenshot
│ │ │ │ │ └── index.md
│ │ │ │ ├── scrollViewer
│ │ │ │ │ └── index.md
│ │ │ │ ├── searchBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── shield
│ │ │ │ │ └── index.md
│ │ │ │ ├── sideMenu
│ │ │ │ │ └── index.md
│ │ │ │ ├── simpleItemsControl
│ │ │ │ │ └── index.md
│ │ │ │ ├── simplePanel
│ │ │ │ │ └── index.md
│ │ │ │ ├── simpleText
│ │ │ │ │ └── index.md
│ │ │ │ ├── splitButton
│ │ │ │ │ └── index.md
│ │ │ │ ├── sprite
│ │ │ │ │ └── index.md
│ │ │ │ ├── stepBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── tabControl
│ │ │ │ │ └── index.md
│ │ │ │ ├── tag
│ │ │ │ │ └── index.md
│ │ │ │ ├── textBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── timeBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── timePicker
│ │ │ │ │ └── index.md
│ │ │ │ ├── toggleBlock
│ │ │ │ │ └── index.md
│ │ │ │ ├── transfer
│ │ │ │ │ └── index.md
│ │ │ │ ├── transitioningContentControl
│ │ │ │ │ └── index.md
│ │ │ │ ├── waterfallPanel
│ │ │ │ │ └── index.md
│ │ │ │ ├── watermark
│ │ │ │ │ └── index.md
│ │ │ │ ├── waveProgressBar
│ │ │ │ │ └── index.md
│ │ │ │ └── window
│ │ │ │ └── index.md
│ │ │ ├── index.md
│ │ │ ├── langs
│ │ │ │ └── index.md
│ │ │ ├── native_controls
│ │ │ │ ├── border
│ │ │ │ │ └── index.md
│ │ │ │ ├── button
│ │ │ │ │ └── index.md
│ │ │ │ ├── calendar
│ │ │ │ │ └── index.md
│ │ │ │ ├── checkBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── comboBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── contentControl
│ │ │ │ │ └── index.md
│ │ │ │ ├── contextMenu
│ │ │ │ │ └── index.md
│ │ │ │ ├── dataGrid
│ │ │ │ │ └── index.md
│ │ │ │ ├── datePicker
│ │ │ │ │ └── index.md
│ │ │ │ ├── expander
│ │ │ │ │ └── index.md
│ │ │ │ ├── flowDocument
│ │ │ │ │ └── index.md
│ │ │ │ ├── frame
│ │ │ │ │ └── index.md
│ │ │ │ ├── groupBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── image
│ │ │ │ │ └── index.md
│ │ │ │ ├── index.md
│ │ │ │ ├── label
│ │ │ │ │ └── index.md
│ │ │ │ ├── listBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── listView
│ │ │ │ │ └── index.md
│ │ │ │ ├── menu
│ │ │ │ │ └── index.md
│ │ │ │ ├── passwordBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── progressBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── radioButton
│ │ │ │ │ └── index.md
│ │ │ │ ├── richTextBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── scrollViewer
│ │ │ │ │ └── index.md
│ │ │ │ ├── separator
│ │ │ │ │ └── index.md
│ │ │ │ ├── slider
│ │ │ │ │ └── index.md
│ │ │ │ ├── statusBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── tabControl
│ │ │ │ │ └── index.md
│ │ │ │ ├── textBlock
│ │ │ │ │ └── index.md
│ │ │ │ ├── textBox
│ │ │ │ │ └── index.md
│ │ │ │ ├── toggleButton
│ │ │ │ │ └── index.md
│ │ │ │ ├── toolBar
│ │ │ │ │ └── index.md
│ │ │ │ ├── toolTip
│ │ │ │ │ └── index.md
│ │ │ │ ├── treeView
│ │ │ │ │ └── index.md
│ │ │ │ └── window
│ │ │ │ └── index.md
│ │ │ ├── quick_start
│ │ │ │ └── index.md
│ │ │ ├── tnx
│ │ │ │ └── index.md
│ │ │ └── tools
│ │ │ ├── effect
│ │ │ │ └── index.md
│ │ │ ├── hatchBrushGenerator
│ │ │ │ └── index.md
│ │ │ ├── index.md
│ │ │ └── morphingAnimation
│ │ │ └── index.md
│ │ └── _posts
│ │ └── home.md
│ └── themes
│ └── next
│ ├── bower.json
│ ├── _config.yml
│ ├── crowdin.yml
│ ├── gulpfile.coffee
│ ├── languages
│ │ └── zh-CN.yml
│ ├── layout
│ │ ├── archive.swig
│ │ ├── category.swig
│ │ ├── _custom
│ │ │ ├── header.swig
│ │ │ ├── head.swig
│ │ │ └── sidebar.swig
│ │ ├── index.swig
│ │ ├── _layout.swig
│ │ ├── _macro
│ │ │ ├── menu
│ │ │ │ ├── menu-badge.swig
│ │ │ │ └── menu-item.swig
│ │ │ ├── post-collapse.swig
│ │ │ ├── post.swig
│ │ │ └── sidebar.swig
│ │ ├── page.swig
│ │ ├── _partials
│ │ │ ├── comments.swig
│ │ │ ├── footer.swig
│ │ │ ├── github-banner.swig
│ │ │ ├── head
│ │ │ │ ├── external-fonts.swig
│ │ │ │ ├── head.swig
│ │ │ │ └── head-unique.swig
│ │ │ ├── header
│ │ │ │ ├── brand.swig
│ │ │ │ ├── index.swig
│ │ │ │ ├── menu.swig
│ │ │ │ └── sub-menu.swig
│ │ │ ├── page
│ │ │ │ ├── breadcrumb.swig
│ │ │ │ └── page-header.swig
│ │ │ ├── pagination.swig
│ │ │ ├── post
│ │ │ │ ├── post-copyright.swig
│ │ │ │ ├── post-related.swig
│ │ │ │ ├── reward.swig
│ │ │ │ └── wechat-subscriber.swig
│ │ │ ├── post-edit.swig
│ │ │ ├── search
│ │ │ │ ├── algolia-search.swig
│ │ │ │ ├── index.swig
│ │ │ │ ├── localsearch.swig
│ │ │ │ └── swiftype.swig
│ │ │ └── share
│ │ │ ├── add-this.swig
│ │ │ ├── baidushare.swig
│ │ │ └── likely.swig
│ │ ├── post.swig
│ │ ├── schedule.swig
│ │ ├── _scripts
│ │ │ ├── commons.swig
│ │ │ ├── exturl.swig
│ │ │ ├── next-boot.swig
│ │ │ ├── noscript.swig
│ │ │ ├── pages
│ │ │ │ └── post-details.swig
│ │ │ ├── schemes
│ │ │ │ ├── gemini.swig
│ │ │ │ ├── mist.swig
│ │ │ │ ├── muse.swig
│ │ │ │ └── pisces.swig
│ │ │ ├── scroll-cookie.swig
│ │ │ └── vendors.swig
│ │ ├── tag.swig
│ │ └── _third-party
│ │ ├── analytics
│ │ │ ├── analytics-with-widget.swig
│ │ │ ├── application-insights.swig
│ │ │ ├── baidu-analytics.swig
│ │ │ ├── busuanzi-counter.swig
│ │ │ ├── cnzz-analytics.swig
│ │ │ ├── facebook-sdk.swig
│ │ │ ├── firestore.swig
│ │ │ ├── google-analytics.swig
│ │ │ ├── growingio.swig
│ │ │ ├── index.swig
│ │ │ ├── lean-analytics.swig
│ │ │ ├── tencent-analytics.swig
│ │ │ ├── tencent-mta.swig
│ │ │ └── vkontakte-api.swig
│ │ ├── baidu-push.swig
│ │ ├── bookmark.swig
│ │ ├── chatra.swig
│ │ ├── comments
│ │ │ ├── changyan.swig
│ │ │ ├── disqusjs.swig
│ │ │ ├── disqus.swig
│ │ │ ├── gitalk.swig
│ │ │ ├── gitment.swig
│ │ │ ├── index.swig
│ │ │ ├── livere.swig
│ │ │ └── valine.swig
│ │ ├── copy-code.swig
│ │ ├── math
│ │ │ ├── index.swig
│ │ │ ├── katex.swig
│ │ │ └── mathjax.swig
│ │ ├── mermaid.swig
│ │ ├── needsharebutton.swig
│ │ ├── pangu.swig
│ │ ├── pdf.swig
│ │ ├── quicklink.swig
│ │ ├── rating.swig
│ │ ├── schedule.swig
│ │ ├── search
│ │ │ ├── algolia-search.swig
│ │ │ ├── index.swig
│ │ │ └── localsearch.swig
│ │ └── tidio.swig
│ ├── LICENSE.md
│ ├── package.json
│ ├── README.md
│ ├── scripts
│ │ ├── filters
│ │ │ └── exturl.js
│ │ ├── helpers
│ │ │ ├── engine.js
│ │ │ └── next-url.js
│ │ ├── merge-configs.js
│ │ ├── merge.js
│ │ └── tags
│ │ ├── button.js
│ │ ├── center-quote.js
│ │ ├── exturl.js
│ │ ├── full-image.js
│ │ ├── group-pictures.js
│ │ ├── include-raw.js
│ │ ├── label.js
│ │ ├── mermaid.js
│ │ ├── note.js
│ │ ├── pdf.js
│ │ ├── tabs.js
│ │ └── video.js
│ ├── source
│ │ ├── css
│ │ │ ├── _common
│ │ │ │ ├── components
│ │ │ │ │ ├── back-to-top-sidebar.styl
│ │ │ │ │ ├── back-to-top.styl
│ │ │ │ │ ├── buttons.styl
│ │ │ │ │ ├── comments.styl
│ │ │ │ │ ├── components.styl
│ │ │ │ │ ├── footer
│ │ │ │ │ │ └── footer.styl
│ │ │ │ │ ├── header
│ │ │ │ │ │ ├── github-banner.styl
│ │ │ │ │ │ ├── headerband.styl
│ │ │ │ │ │ ├── header.styl
│ │ │ │ │ │ ├── menu.styl
│ │ │ │ │ │ ├── site-meta.styl
│ │ │ │ │ │ └── site-nav.styl
│ │ │ │ │ ├── highlight
│ │ │ │ │ │ ├── diff.styl
│ │ │ │ │ │ ├── highlight.styl
│ │ │ │ │ │ └── theme.styl
│ │ │ │ │ ├── pages
│ │ │ │ │ │ ├── archive.styl
│ │ │ │ │ │ ├── breadcrumb.styl
│ │ │ │ │ │ ├── categories.styl
│ │ │ │ │ │ ├── pages.styl
│ │ │ │ │ │ ├── post-detail.styl
│ │ │ │ │ │ ├── schedule.styl
│ │ │ │ │ │ └── tag-cloud.styl
│ │ │ │ │ ├── pagination.styl
│ │ │ │ │ ├── post
│ │ │ │ │ │ ├── post-button.styl
│ │ │ │ │ │ ├── post-collapse.styl
│ │ │ │ │ │ ├── post-copyright.styl
│ │ │ │ │ │ ├── post-eof.styl
│ │ │ │ │ │ ├── post-expand.styl
│ │ │ │ │ │ ├── post-gallery.styl
│ │ │ │ │ │ ├── post-meta.styl
│ │ │ │ │ │ ├── post-nav.styl
│ │ │ │ │ │ ├── post-reading_progress.styl
│ │ │ │ │ │ ├── post-reward.styl
│ │ │ │ │ │ ├── post-rtl.styl
│ │ │ │ │ │ ├── post.styl
│ │ │ │ │ │ ├── post-tags.styl
│ │ │ │ │ │ ├── post-title.styl
│ │ │ │ │ │ ├── post-type.styl
│ │ │ │ │ │ └── post-widgets.styl
│ │ │ │ │ ├── rainbow.styl
│ │ │ │ │ ├── scrollbar.styl
│ │ │ │ │ ├── sidebar
│ │ │ │ │ │ ├── sidebar-author-links.styl
│ │ │ │ │ │ ├── sidebar-author.styl
│ │ │ │ │ │ ├── sidebar-blogroll.styl
│ │ │ │ │ │ ├── sidebar-button.styl
│ │ │ │ │ │ ├── sidebar-dimmer.styl
│ │ │ │ │ │ ├── sidebar-nav.styl
│ │ │ │ │ │ ├── sidebar.styl
│ │ │ │ │ │ ├── sidebar-toc.styl
│ │ │ │ │ │ ├── sidebar-toggle.styl
│ │ │ │ │ │ └── site-state.styl
│ │ │ │ │ ├── tags
│ │ │ │ │ │ ├── blockquote-center.styl
│ │ │ │ │ │ ├── full-image.styl
│ │ │ │ │ │ ├── group-pictures.styl
│ │ │ │ │ │ ├── label.styl
│ │ │ │ │ │ ├── note.styl
│ │ │ │ │ │ ├── pdf.styl
│ │ │ │ │ │ ├── tabs.styl
│ │ │ │ │ │ └── tags.styl
│ │ │ │ │ └── third-party
│ │ │ │ │ ├── algolia-search.styl
│ │ │ │ │ ├── copy-code.styl
│ │ │ │ │ ├── gitalk.styl
│ │ │ │ │ ├── gitment.styl
│ │ │ │ │ ├── han.styl
│ │ │ │ │ ├── localsearch.styl
│ │ │ │ │ ├── math.styl
│ │ │ │ │ ├── needsharebutton.styl
│ │ │ │ │ ├── related-posts.styl
│ │ │ │ │ └── third-party.styl
│ │ │ │ ├── outline
│ │ │ │ │ └── outline.styl
│ │ │ │ └── scaffolding
│ │ │ │ ├── base.styl
│ │ │ │ ├── helpers.styl
│ │ │ │ ├── mobile.styl
│ │ │ │ ├── normalize.styl
│ │ │ │ ├── scaffolding.styl
│ │ │ │ └── tables.styl
│ │ │ ├── _custom
│ │ │ │ └── custom.styl
│ │ │ ├── main.styl
│ │ │ ├── _mixins
│ │ │ │ ├── base.styl
│ │ │ │ ├── custom.styl
│ │ │ │ ├── Gemini.styl
│ │ │ │ ├── Mist.styl
│ │ │ │ ├── Muse.styl
│ │ │ │ └── Pisces.styl
│ │ │ ├── _schemes
│ │ │ │ ├── Gemini
│ │ │ │ │ └── index.styl
│ │ │ │ ├── Mist
│ │ │ │ │ ├── _base.styl
│ │ │ │ │ ├── _header.styl
│ │ │ │ │ ├── index.styl
│ │ │ │ │ ├── _logo.styl
│ │ │ │ │ ├── _menu.styl
│ │ │ │ │ ├── outline
│ │ │ │ │ │ └── outline.styl
│ │ │ │ │ ├── _posts-expanded.styl
│ │ │ │ │ ├── _search.styl
│ │ │ │ │ └── sidebar
│ │ │ │ │ └── sidebar-blogroll.styl
│ │ │ │ ├── Muse
│ │ │ │ │ ├── index.styl
│ │ │ │ │ ├── _layout.styl
│ │ │ │ │ ├── _logo.styl
│ │ │ │ │ ├── _menu.styl
│ │ │ │ │ ├── _search.styl
│ │ │ │ │ └── sidebar
│ │ │ │ │ └── sidebar-blogroll.styl
│ │ │ │ └── Pisces
│ │ │ │ ├── _brand.styl
│ │ │ │ ├── index.styl
│ │ │ │ ├── _layout.styl
│ │ │ │ ├── _menu.styl
│ │ │ │ ├── _sidebar.styl
│ │ │ │ └── _sub-menu.styl
│ │ │ └── _variables
│ │ │ ├── base.styl
│ │ │ ├── custom.styl
│ │ │ ├── Gemini.styl
│ │ │ ├── Mist.styl
│ │ │ ├── Muse.styl
│ │ │ └── Pisces.styl
│ │ ├── fonts
│ │ ├── images
│ │ │ ├── algolia_logo.svg
│ │ │ ├── apple-touch-icon-HandyOrg.png
│ │ │ ├── avatar.gif
│ │ │ ├── cc-by-nc-nd.svg
│ │ │ ├── cc-by-nc-sa.svg
│ │ │ ├── cc-by-nc.svg
│ │ │ ├── cc-by-nd.svg
│ │ │ ├── cc-by-sa.svg
│ │ │ ├── cc-by.svg
│ │ │ ├── cc-zero.svg
│ │ │ ├── favicon-16x16-HandyOrg.png
│ │ │ ├── favicon-32x32-HandyOrg.png
│ │ │ ├── loading.gif
│ │ │ ├── logo.svg
│ │ │ ├── placeholder.gif
│ │ │ ├── quote-l.svg
│ │ │ ├── quote-r.svg
│ │ │ └── searchicon.png
│ │ ├── js
│ │ │ ├── affix.js
│ │ │ ├── algolia-search.js
│ │ │ ├── exturl.js
│ │ │ ├── js.cookie.js
│ │ │ ├── motion.js
│ │ │ ├── next-boot.js
│ │ │ ├── post-details.js
│ │ │ ├── schemes
│ │ │ │ ├── muse.js
│ │ │ │ └── pisces.js
│ │ │ ├── scroll-cookie.js
│ │ │ ├── scrollspy.js
│ │ │ └── utils.js
│ │ └── lib
│ │ ├── jquery
│ │ │ └── index.js
│ │ └── velocity
│ │ ├── velocity.js
│ │ ├── velocity.min.js
│ │ ├── velocity.ui.js
│ │ └── velocity.ui.min.js
│ └── test
│ ├── helpers.js
│ └── intern.js
├── extension
│ └── visual studio
│ ├── HandyControl_VS_Templates
│ │ ├── HandyControl_VS_Templates.csproj
│ │ ├── icon_100_100.png
│ │ ├── icon_300_300.png
│ │ ├── License.txt
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── source.extension.vsixmanifest
│ ├── HandyControl_VS_Templates.sln
│ ├── WpfApp
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── AssemblyInfo.cs
│ │ ├── icon.ico
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── ProjectTemplate.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── WpfApp.csproj
│ │ └── WpfApp.vstemplate
│ └── WpfCoreApp
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AssemblyInfo.cs
│ ├── icon.ico
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── ProjectTemplate.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── WpfCoreApp.csproj
│ └── WpfCoreApp.vstemplate
├── LICENSE
├── README-cn.md
├── README.md
├── SECURITY.md
└── src
├── Avalonia
│ ├── Directory.Build.props
│ ├── HandyControl_Avalonia
│ │ ├── HandyControl_Avalonia.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Themes
│ │ ├── Basic
│ │ │ ├── Brushes.axaml
│ │ │ ├── Colors.axaml
│ │ │ ├── Effects.axaml
│ │ │ └── Sizes.axaml
│ │ ├── Styles
│ │ │ ├── Button.axaml
│ │ │ ├── ContentControl.axaml
│ │ │ ├── Style.axaml
│ │ │ ├── UserControl.axaml
│ │ │ └── Window.axaml
│ │ ├── Theme.axaml
│ │ └── Theme.axaml.cs
│ └── HandyControlDemo_Avalonia
│ ├── App.axaml
│ ├── App.axaml.cs
│ ├── app.manifest
│ ├── HandyControlDemo_Avalonia.csproj
│ ├── MainWindow.axaml
│ ├── MainWindow.axaml.cs
│ ├── Program.cs
│ ├── Resources
│ │ ├── Img
│ │ │ ├── cloud.png
│ │ │ └── icon.ico
│ │ └── Themes
│ │ ├── Basic
│ │ │ ├── Basic.axaml
│ │ │ └── Brushes.axaml
│ │ └── Theme.axaml
│ └── Views
│ ├── Main
│ │ ├── MainWindowContent.axaml
│ │ └── MainWindowContent.axaml.cs
│ └── Styles
│ ├── ButtonDemoCtrl.axaml
│ └── ButtonDemoCtrl.axaml.cs
├── Directory.Build.Props
├── HandyControl.sln
├── Net_40
│ ├── HandyControlDemo_Net_40
│ │ └── HandyControlDemo_Net_40.csproj
│ └── HandyControl_Net_40
│ ├── HandyControl_Net_40.csproj
│ └── Themes
│ ├── Styles
│ │ ├── Base
│ │ │ ├── CheckComboBoxBaseStyle.xaml
│ │ │ ├── ComboBoxBaseStyle.xaml
│ │ │ └── TreeViewBaseStyle.xaml
│ │ ├── DataGrid.xaml
│ │ ├── ListView.xaml
│ │ ├── MessageBox.xaml
│ │ └── Window.xaml
│ └── Theme.xaml
├── Net_GE45
│ ├── HandyControlDemo_Net_GE45
│ │ └── HandyControlDemo_Net_GE45.csproj
│ └── HandyControl_Net_GE45
│ └── HandyControl_Net_GE45.csproj
└── Shared
├── HandyControlDemo_Code
│ ├── DemoHelper.cs
│ └── HandyControlDemo_Code.csproj
├── HandyControlDemo_Shared
│ ├── app.manifest
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Data
│ │ ├── AppConfig.cs
│ │ ├── DemoInfo.json
│ │ ├── Enum
│ │ │ └── DemoType.cs
│ │ ├── GlobalData.cs
│ │ ├── MessageToken.cs
│ │ ├── MessageToken.tt
│ │ ├── Model
│ │ │ ├── AvatarModel.cs
│ │ │ ├── CardModel.cs
│ │ │ ├── ChatInfoModel.cs
│ │ │ ├── CoverViewDemoModel.cs
│ │ │ ├── DemoDataModel.cs
│ │ │ ├── DemoInfoModel.cs
│ │ │ ├── DemoItemModel.cs
│ │ │ ├── GeometryItemModel.cs
│ │ │ ├── PropertyGridDemoModel.cs
│ │ │ ├── StepBarDemoModel.cs
│ │ │ └── TabControlDemoModel.cs
│ │ └── SideMenuConfig.json
│ ├── HandyControlDemo_Shared.projitems
│ ├── HandyControlDemo_Shared.shproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── Properties
│ │ ├── App.config
│ │ ├── AssemblyInfo.cs
│ │ └── Langs
│ │ ├── Lang.ca-ES.resx
│ │ ├── Lang.cs.resx
│ │ ├── LangDecorator.cs
│ │ ├── Lang.Designer.cs
│ │ ├── Lang.en.resx
│ │ ├── Lang.es.resx
│ │ ├── Lang.fa.resx
│ │ ├── Lang.fr.resx
│ │ ├── Lang.ja.resx
│ │ ├── Lang.ko-KR.resx
│ │ ├── Lang.pl.resx
│ │ ├── LangProvider.cs
│ │ ├── LangProvider.tt
│ │ ├── Lang.pt-BR.resx
│ │ ├── Lang.resx
│ │ ├── Lang.ru.resx
│ │ └── Lang.tr.resx
│ ├── Resources
│ │ ├── DemoTheme.cs
│ │ ├── fabric-icons.ttf
│ │ ├── Img
│ │ │ ├── 1.jpg
│ │ │ ├── 2.jpg
│ │ │ ├── 3.jpg
│ │ │ ├── 4.jpg
│ │ │ ├── 5.jpg
│ │ │ ├── Album
│ │ │ │ ├── 10.jpg
│ │ │ │ ├── 1.jpg
│ │ │ │ ├── 2.jpg
│ │ │ │ ├── 3.jpg
│ │ │ │ ├── 4.jpg
│ │ │ │ ├── 5.jpg
│ │ │ │ ├── 6.jpg
│ │ │ │ ├── 7.jpg
│ │ │ │ ├── 8.jpg
│ │ │ │ └── 9.jpg
│ │ │ ├── Avatar
│ │ │ │ ├── avatar1.png
│ │ │ │ ├── avatar2.png
│ │ │ │ ├── avatar3.png
│ │ │ │ ├── avatar4.png
│ │ │ │ ├── avatar5.png
│ │ │ │ └── avatar6.png
│ │ │ ├── b1.jpg
│ │ │ ├── b2.jpg
│ │ │ ├── car_chase.gif
│ │ │ ├── Chat
│ │ │ │ ├── chat_back1.jpg
│ │ │ │ └── chat_back2.jpg
│ │ │ ├── chrome_dragon.png
│ │ │ ├── cloud.png
│ │ │ ├── Cover.png
│ │ │ ├── Dance.png
│ │ │ ├── DevOps
│ │ │ │ ├── DevOps-Boards.png
│ │ │ │ ├── DevOps-Overview.png
│ │ │ │ ├── DevOps-Pipelines.png
│ │ │ │ ├── DevOps-Repos.png
│ │ │ │ └── DevOps-TestPlans.png
│ │ │ ├── Flag
│ │ │ │ ├── ca-Es.png
│ │ │ │ ├── cn.png
│ │ │ │ ├── cs.png
│ │ │ │ ├── en.png
│ │ │ │ ├── es.png
│ │ │ │ ├── fa.png
│ │ │ │ ├── fr.png
│ │ │ │ ├── ja.png
│ │ │ │ ├── ko-KR.png
│ │ │ │ ├── pl.png
│ │ │ │ ├── pt-BR.png
│ │ │ │ ├── ru.png
│ │ │ │ └── tr.png
│ │ │ ├── icon.ico
│ │ │ ├── icon-white.ico
│ │ │ │ ├── 10.gif
│ │ │ │ ├── 1.gif
│ │ │ │ ├── 2.gif
│ │ │ │ ├── 3.gif
│ │ │ │ ├── 4.gif
│ │ │ │ ├── 5.gif
│ │ │ │ ├── 6.gif
│ │ │ │ ├── 7.gif
│ │ │ │ ├── 8.gif
│ │ │ │ └── 9.gif
│ │ │ ├── Slack.png
│ │ │ └── under_construction.gif
│ │ ├── Registry.txt
│ │ ├── Themes
│ │ │ ├── Basic
│ │ │ │ ├── Basic.xaml
│ │ │ │ ├── Brushes.xaml
│ │ │ │ ├── Colors
│ │ │ │ │ ├── ColorsDark.xaml
│ │ │ │ │ └── Colors.xaml
│ │ │ │ ├── Converters.xaml
│ │ │ │ ├── Fonts.xaml
│ │ │ │ └── Geometries.xaml
│ │ │ ├── SkinDark.xaml
│ │ │ ├── SkinDefault.xaml
│ │ │ ├── Styles
│ │ │ │ └── Style.xaml
│ │ │ └── Theme.xaml
│ │ └── xshd
│ │ ├── CSharp-Dark.xshd
│ │ └── XML-Dark.xshd
│ ├── Service
│ │ └── Data
│ │ └── DataService.cs
│ ├── Tools
│ │ ├── Converter
│ │ │ ├── HatchBrushConverter.cs
│ │ │ ├── String2BrushConverter.cs
│ │ │ └── StringRepeatConverter.cs
│ │ ├── Extension
│ │ │ └── LangExtension.cs
│ │ ├── Helper
│ │ │ ├── AssemblyHelper.cs
│ │ │ ├── VersionHelper.cs
│ │ │ └── Win32Helper.cs
│ │ ├── HighlightingProvider.cs
│ │ └── ValidationRule
│ │ └── NumericUpDownDemoRule.cs
│ ├── UserControl
│ │ ├── Basic
│ │ │ ├── Avatar.xaml
│ │ │ ├── Avatar.xaml.cs
│ │ │ ├── ChatBox.xaml
│ │ │ ├── ChatBox.xaml.cs
│ │ │ ├── GeometryItem.xaml
│ │ │ ├── GeometryItem.xaml.cs
│ │ │ ├── IFull.cs
│ │ │ ├── InteractiveDialog.xaml
│ │ │ ├── InteractiveDialog.xaml.cs
│ │ │ ├── TextDialogWithTimer.xaml
│ │ │ ├── TextDialogWithTimer.xaml.cs
│ │ │ ├── TextDialog.xaml
│ │ │ └── TextDialog.xaml.cs
│ │ ├── Controls
│ │ │ ├── AnimationPathDemoCtl.xaml
│ │ │ ├── AnimationPathDemoCtl.xaml.cs
│ │ │ ├── AutoCompleteTextBoxDemoCtl.xaml
│ │ │ ├── AutoCompleteTextBoxDemoCtl.xaml.cs
│ │ │ ├── BadgeDemoCtl.xaml
│ │ │ ├── BadgeDemoCtl.xaml.cs
│ │ │ ├── ButtonGroupDemoCtl.xaml
│ │ │ ├── ButtonGroupDemoCtl.xaml.cs
│ │ │ ├── CalendarWithClockDemoCtl.xaml
│ │ │ ├── CalendarWithClockDemoCtl.xaml.cs
│ │ │ ├── CardDemoCtl.xaml
│ │ │ ├── CardDemoCtl.xaml.cs
│ │ │ ├── CarouselDemoCtl.xaml
│ │ │ ├── CarouselDemoCtl.xaml.cs
│ │ │ ├── ChatBubbleDemoCtl.xaml
│ │ │ ├── ChatBubbleDemoCtl.xaml.cs
│ │ │ ├── CheckComboBoxDemoCtl.xaml
│ │ │ ├── CheckComboBoxDemoCtl.xaml.cs
│ │ │ ├── CirclePanelDemoCtl.xaml
│ │ │ ├── CirclePanelDemoCtl.xaml.cs
│ │ │ ├── ClockDemoCtl.xaml
│ │ │ ├── ClockDemoCtl.xaml.cs
│ │ │ ├── ColorPickerDemoCtl.xaml
│ │ │ ├── ColorPickerDemoCtl.xaml.cs
│ │ │ ├── ComboBoxDemoCtl.xaml
│ │ │ ├── ComboBoxDemoCtl.xaml.cs
│ │ │ ├── CompareSliderDemoCtl.xaml
│ │ │ ├── CompareSliderDemoCtl.xaml.cs
│ │ │ ├── CoverFlowDemoCtl.xaml
│ │ │ ├── CoverFlowDemoCtl.xaml.cs
│ │ │ ├── CoverViewDemoCtl.xaml
│ │ │ ├── CoverViewDemoCtl.xaml.cs
│ │ │ ├── DatePickerDemoCtl.xaml
│ │ │ ├── DatePickerDemoCtl.xaml.cs
│ │ │ ├── DateTimePickerDemoCtl.xaml
│ │ │ ├── DateTimePickerDemoCtl.xaml.cs
│ │ │ ├── DialogDemoCtl.xaml
│ │ │ ├── DialogDemoCtl.xaml.cs
│ │ │ ├── DividerDemoCtl.xaml
│ │ │ ├── DividerDemoCtl.xaml.cs
│ │ │ ├── DrawerDemoCtl.xaml
│ │ │ ├── DrawerDemoCtl.xaml.cs
│ │ │ ├── ElementGroupDemoCtl.xaml
│ │ │ ├── ElementGroupDemoCtl.xaml.cs
│ │ │ ├── FlexPanelDemoCtl.xaml
│ │ │ ├── FlexPanelDemoCtl.xaml.cs
│ │ │ ├── FlipClockDemoCtl.xaml
│ │ │ ├── FlipClockDemoCtl.xaml.cs
│ │ │ ├── FloatingBlockDemoCtl.xaml
│ │ │ ├── FloatingBlockDemoCtl.xaml.cs
│ │ │ ├── GifImageDemoCtl.xaml
│ │ │ ├── GifImageDemoCtl.xaml.cs
│ │ │ ├── GotoTopDemoCtl.xaml
│ │ │ ├── GotoTopDemoCtl.xaml.cs
│ │ │ ├── GravatarDemoCtl.xaml
│ │ │ ├── GravatarDemoCtl.xaml.cs
│ │ │ ├── GridDemoCtl.xaml
│ │ │ ├── GridDemoCtl.xaml.cs
│ │ │ ├── GrowlDemoCtl.xaml
│ │ │ ├── GrowlDemoCtl.xaml.cs
│ │ │ ├── HoneycombPanelDemoCtl.xaml
│ │ │ ├── HoneycombPanelDemoCtl.xaml.cs
│ │ │ ├── ImageBlockDemoCtl.xaml
│ │ │ ├── ImageBlockDemoCtl.xaml.cs
│ │ │ ├── ImageBrowserDemoCtl.xaml
│ │ │ ├── ImageBrowserDemoCtl.xaml.cs
│ │ │ ├── ImageSelectorDemoCtl.xaml
│ │ │ ├── ImageSelectorDemoCtl.xaml.cs
│ │ │ ├── LoadingDemoCtl.xaml
│ │ │ ├── LoadingDemoCtl.xaml.cs
│ │ │ ├── MagnifierDemoCtl.xaml
│ │ │ ├── MagnifierDemoCtl.xaml.cs
│ │ │ ├── NotificationDemoCtl.xaml
│ │ │ ├── NotificationDemoCtl.xaml.cs
│ │ │ ├── NotifyIconDemoCtl.xaml
│ │ │ ├── NotifyIconDemoCtl.xaml.cs
│ │ │ ├── NumericUpDownDemoCtl.xaml
│ │ │ ├── NumericUpDownDemoCtl.xaml.cs
│ │ │ ├── OutlineTextDemoCtl.xaml
│ │ │ ├── OutlineTextDemoCtl.xaml.cs
│ │ │ ├── PaginationDemoCtl.xaml
│ │ │ ├── PaginationDemoCtl.xaml.cs
│ │ │ ├── PasswordBoxDemoCtl.xaml
│ │ │ ├── PasswordBoxDemoCtl.xaml.cs
│ │ │ ├── PinBoxDemoCtl.xaml
│ │ │ ├── PinBoxDemoCtl.xaml.cs
│ │ │ ├── PoptipDemoCtl.xaml
│ │ │ ├── PoptipDemoCtl.xaml.cs
│ │ │ ├── PreviewSliderDemoCtl.xaml
│ │ │ ├── PreviewSliderDemoCtl.xaml.cs
│ │ │ ├── ProgressBarDemoCtl.xaml
│ │ │ ├── ProgressBarDemoCtl.xaml.cs
│ │ │ ├── ProgressButtonDemoCtl.xaml
│ │ │ ├── ProgressButtonDemoCtl.xaml.cs
│ │ │ ├── PropertyGridDemoCtl.xaml
│ │ │ ├── PropertyGridDemoCtl.xaml.cs
│ │ │ ├── RangeSliderDemoCtl.xaml
│ │ │ ├── RangeSliderDemoCtl.xaml.cs
│ │ │ ├── RateDemoCtl.xaml
│ │ │ ├── RateDemoCtl.xaml.cs
│ │ │ ├── RelativePanelDemoCtl.xaml
│ │ │ ├── RelativePanelDemoCtl.xaml.cs
│ │ │ ├── RunningBlockDemoCtl.xaml
│ │ │ ├── RunningBlockDemoCtl.xaml.cs
│ │ │ ├── ScreenshotDemoCtl.xaml
│ │ │ ├── ScreenshotDemoCtl.xaml.cs
│ │ │ ├── ScrollViewerDemoCtl.xaml
│ │ │ ├── ScrollViewerDemoCtl.xaml.cs
│ │ │ ├── SearchBarDemoCtl.xaml
│ │ │ ├── SearchBarDemoCtl.xaml.cs
│ │ │ ├── ShieldDemoCtl.xaml
│ │ │ ├── ShieldDemoCtl.xaml.cs
│ │ │ ├── SideMenuDemoCtl.xaml
│ │ │ ├── SideMenuDemoCtl.xaml.cs
│ │ │ ├── SplitButtonDemoCtl.xaml
│ │ │ ├── SplitButtonDemoCtl.xaml.cs
│ │ │ ├── SpriteDemoCtl.xaml
│ │ │ ├── SpriteDemoCtl.xaml.cs
│ │ │ ├── StepBarDemoCtl.xaml
│ │ │ ├── StepBarDemoCtl.xaml.cs
│ │ │ ├── TabControlDemoCtl.xaml
│ │ │ ├── TabControlDemoCtl.xaml.cs
│ │ │ ├── TagDemoCtl.xaml
│ │ │ ├── TagDemoCtl.xaml.cs
│ │ │ ├── TextBoxDemoCtl.xaml
│ │ │ ├── TextBoxDemoCtl.xaml.cs
│ │ │ ├── TimeBarDemoCtl.xaml
│ │ │ ├── TimeBarDemoCtl.xaml.cs
│ │ │ ├── TimePickerDemoCtl.xaml
│ │ │ ├── TimePickerDemoCtl.xaml.cs
│ │ │ ├── TransferDemoCtl.xaml
│ │ │ ├── TransferDemoCtl.xaml.cs
│ │ │ ├── TransitioningContentControlDemoCtl.xaml
│ │ │ ├── TransitioningContentControlDemoCtl.xaml.cs
│ │ │ ├── UniformSpacingPanelDemoCtl.xaml
│ │ │ ├── UniformSpacingPanelDemoCtl.xaml.cs
│ │ │ ├── WaterfallPanelDemoCtl.xaml
│ │ │ ├── WaterfallPanelDemoCtl.xaml.cs
│ │ │ ├── WatermarkDemoCtl.xaml
│ │ │ ├── WatermarkDemoCtl.xaml.cs
│ │ │ ├── WindowDemoCtl.xaml
│ │ │ └── WindowDemoCtl.xaml.cs
│ │ ├── Main
│ │ │ ├── AppNotification.xaml
│ │ │ ├── AppNotification.xaml.cs
│ │ │ ├── AppSprite.xaml
│ │ │ ├── AppSprite.xaml.cs
│ │ │ ├── BlogsView.xaml
│ │ │ ├── BlogsView.xaml.cs
│ │ │ ├── ContributorsView.xaml
│ │ │ ├── ContributorsView.xaml.cs
│ │ │ ├── LeftMainContent.xaml
│ │ │ ├── LeftMainContent.xaml.cs
│ │ │ ├── MainContent.xaml
│ │ │ ├── MainContent.xaml.cs
│ │ │ ├── MainWindowContent.xaml
│ │ │ ├── MainWindowContent.xaml.cs
│ │ │ ├── NonClientAreaContent.cs
│ │ │ ├── NonClientAreaContent.xaml
│ │ │ ├── PracticalDemo.cs
│ │ │ ├── PracticalDemo.xaml
│ │ │ ├── ProjectsView.xaml
│ │ │ ├── ProjectsView.xaml.cs
│ │ │ ├── UnderConstruction.xaml
│ │ │ ├── UnderConstruction.xaml.cs
│ │ │ ├── WebsitesView.xaml
│ │ │ └── WebsitesView.xaml.cs
│ │ ├── Practical
│ │ │ ├── Login.xaml
│ │ │ └── Login.xaml.cs
│ │ ├── Styles
│ │ │ ├── BorderDemoCtl.xaml
│ │ │ ├── BorderDemoCtl.xaml.cs
│ │ │ ├── BrushDemoCtl.xaml
│ │ │ ├── BrushDemoCtl.xaml.cs
│ │ │ ├── ButtonDemoCtl.xaml
│ │ │ ├── ButtonDemoCtl.xaml.cs
│ │ │ ├── CalendarDemoCtl.xaml
│ │ │ ├── CalendarDemoCtl.xaml.cs
│ │ │ ├── CheckBoxDemoCtl.xaml
│ │ │ ├── CheckBoxDemoCtl.xaml.cs
│ │ │ ├── DataGridDemoCtl.xaml
│ │ │ ├── DataGridDemoCtl.xaml.cs
│ │ │ ├── ExpanderDemoCtl.xaml
│ │ │ ├── ExpanderDemoCtl.xaml.cs
│ │ │ ├── FlowDocumentDemoCtl.xaml
│ │ │ ├── FlowDocumentDemoCtl.xaml.cs
│ │ │ ├── FrameDemoCtl.xaml
│ │ │ ├── FrameDemoCtl.xaml.cs
│ │ │ ├── GeometryDemoCtl.xaml
│ │ │ ├── GeometryDemoCtl.xaml.cs
│ │ │ ├── GroupBoxDemoCtl.xaml
│ │ │ ├── GroupBoxDemoCtl.xaml.cs
│ │ │ ├── LabelDemoCtl.xaml
│ │ │ ├── LabelDemoCtl.xaml.cs
│ │ │ ├── ListBoxDemoCtl.xaml
│ │ │ ├── ListBoxDemoCtl.xaml.cs
│ │ │ ├── ListViewDemoCtl.xaml
│ │ │ ├── ListViewDemoCtl.xaml.cs
│ │ │ ├── MenuDemoCtl.xaml
│ │ │ ├── MenuDemoCtl.xaml.cs
│ │ │ ├── NativeComboBoxDemoCtl.xaml
│ │ │ ├── NativeComboBoxDemoCtl.xaml.cs
│ │ │ ├── NativeDatePickerDemoCtl.xaml
│ │ │ ├── NativeDatePickerDemoCtl.xaml.cs
│ │ │ ├── NativePasswordBoxDemoCtl.xaml
│ │ │ ├── NativePasswordBoxDemoCtl.xaml.cs
│ │ │ ├── NativeProgressBarDemoCtl.xaml
│ │ │ ├── NativeProgressBarDemoCtl.xaml.cs
│ │ │ ├── NativeScrollViewerDemoCtl.xaml
│ │ │ ├── NativeScrollViewerDemoCtl.xaml.cs
│ │ │ ├── NativeTabControlDemoCtl.xaml
│ │ │ ├── NativeTabControlDemoCtl.xaml.cs
│ │ │ ├── NativeTextBoxDemoCtl.xaml
│ │ │ ├── NativeTextBoxDemoCtl.xaml.cs
│ │ │ ├── NativeWindowDemoCtl.xaml
│ │ │ ├── NativeWindowDemoCtl.xaml.cs
│ │ │ ├── RadioButtonDemoCtl.xaml
│ │ │ ├── RadioButtonDemoCtl.xaml.cs
│ │ │ ├── RepeatButtonDemoCtl.xaml
│ │ │ ├── RepeatButtonDemoCtl.xaml.cs
│ │ │ ├── RichTextBoxDemoCtl.xaml
│ │ │ ├── RichTextBoxDemoCtl.xaml.cs
│ │ │ ├── SliderDemoCtl.xaml
│ │ │ ├── SliderDemoCtl.xaml.cs
│ │ │ ├── TextBlockDemoCtl.xaml
│ │ │ ├── TextBlockDemoCtl.xaml.cs
│ │ │ ├── ToggleButtonDemoCtl.xaml
│ │ │ ├── ToggleButtonDemoCtl.xaml.cs
│ │ │ ├── ToolBarDemoCtl.xaml
│ │ │ ├── ToolBarDemoCtl.xaml.cs
│ │ │ ├── TreeViewDemoCtl.xaml
│ │ │ └── TreeViewDemoCtl.xaml.cs
│ │ └── Tools
│ │ ├── EffectsDemoCtl.xaml
│ │ ├── EffectsDemoCtl.xaml.cs
│ │ ├── GeometryAnimationDemoCtl.xaml
│ │ ├── GeometryAnimationDemoCtl.xaml.cs
│ │ ├── HatchBrushGeneratorDemoCtl.xaml
│ │ └── HatchBrushGeneratorDemoCtl.xaml.cs
│ ├── ViewModel
│ │ ├── Basic
│ │ │ ├── ChatBoxViewModel.cs
│ │ │ └── InteractiveDialogViewModel.cs
│ │ ├── Common
│ │ │ └── InputElementDemoViewModel.cs
│ │ ├── Controls
│ │ │ ├── AutoCompleteTextBoxDemoViewModel.cs
│ │ │ ├── BadgeDemoViewModel.cs
│ │ │ ├── CardDemoViewModel.cs
│ │ │ ├── CoverViewModel.cs
│ │ │ ├── DialogDemoViewModel.cs
│ │ │ ├── GrowlDemoViewModel.cs
│ │ │ ├── ImageBrowserDemoViewModel.cs
│ │ │ ├── NotificationDemoViewModel.cs
│ │ │ ├── NotifyIconDemoViewModel.cs
│ │ │ ├── PaginationDemoViewModel.cs
│ │ │ ├── SideMenuDemoViewModel.cs
│ │ │ ├── SplitButtonDemoViewModel.cs
│ │ │ ├── SpriteDemoViewModel.cs
│ │ │ ├── StepBarDemoViewModel.cs
│ │ │ ├── TabControlDemoViewModel.cs
│ │ │ ├── TagDemoViewModel.cs
│ │ │ └── WindowDemoViewModel.cs
│ │ ├── DemoViewModelBase`1.cs
│ │ ├── Main
│ │ │ ├── ItemsDisplayViewModel.cs
│ │ │ ├── MainViewModel.cs
│ │ │ └── NonClientAreaViewModel.cs
│ │ └── ViewModelLocator.cs
│ └── Window
│ ├── AboutWindow.xaml
│ ├── AboutWindow.xaml.cs
│ ├── BlurWindow.xaml
│ ├── BlurWindow.xaml.cs
│ ├── CommonWindow.xaml
│ ├── CommonWindow.xaml.cs
│ ├── CustomNonClientAreaWindow.xaml
│ ├── CustomNonClientAreaWindow.xaml.cs
│ ├── DialogDemoWindow.xaml
│ ├── DialogDemoWindow.xaml.cs
│ ├── GlowWindow.xaml
│ ├── GlowWindow.xaml.cs
│ ├── GrowlDemoWindow.xaml
│ ├── GrowlDemoWindow.xaml.cs
│ ├── NativeCommonWindow.xaml
│ ├── NativeCommonWindow.xaml.cs
│ ├── NavigationWindow.xaml
│ ├── NavigationWindow.xaml.cs
│ ├── NoNonClientAreaDragableWindow.xaml
│ ├── NoNonClientAreaDragableWindow.xaml.cs
│ ├── TouchDragMoveWindow.xaml
│ └── TouchDragMoveWindow.xaml.cs
├── HandyControl_Shared
│ ├── Collections
│ │ ├── ManualObservableCollection`1.cs
│ │ ├── Pool
│ │ │ ├── IPool`1.cs
│ │ │ ├── SimplePool`1.cs
│ │ │ └── SynchronizedPool`1.cs
│ │ └── Queue
│ │ └── Deque`1.cs
│ ├── Controls
│ │ ├── Attach
│ │ │ ├── BackgroundSwitchElement.cs
│ │ │ ├── BorderElement.cs
│ │ │ ├── ComboBoxAttach.cs
│ │ │ ├── DataGridAttach.cs
│ │ │ ├── DropDownElement.cs
│ │ │ ├── EdgeElement.cs
│ │ │ ├── GridAttach.cs
│ │ │ ├── GridViewAttach.cs
│ │ │ ├── IconElement.cs
│ │ │ ├── IconSwitchElement.cs
│ │ │ ├── ImageAttach.cs
│ │ │ ├── InfoElement.cs
│ │ │ ├── ListBoxAttach.cs
│ │ │ ├── MenuAttach.cs
│ │ │ ├── MenuItemAttach.cs
│ │ │ ├── MenuTopLineAttach.cs
│ │ │ ├── PanelElement.cs
│ │ │ ├── PasswordBoxAttach.cs
│ │ │ ├── RectangleAttach.cs
│ │ │ ├── ScrollViewerAttach.cs
│ │ │ ├── StatusSwitchElement.cs
│ │ │ ├── TextBlockAttach.cs
│ │ │ ├── TipElement.cs
│ │ │ ├── TitleElement.cs
│ │ │ ├── ToggleButtonAttach.cs
│ │ │ ├── VisualElement.cs
│ │ │ └── WindowAttach.cs
│ │ ├── Base
│ │ │ ├── AdornerElement.cs
│ │ │ ├── HeaderedSelectableItem.cs
│ │ │ ├── HeaderedSimpleItemsControl.cs
│ │ │ ├── IGravatarGenerator.cs
│ │ │ ├── ISelectable.cs
│ │ │ ├── ISingleOpen.cs
│ │ │ ├── RegularItemsControl.cs
│ │ │ ├── SelectableItem.cs
│ │ │ └── SimpleItemsControl.cs
│ │ ├── Block
│ │ │ ├── FloatingBlock.cs
│ │ │ ├── RunningBlock
│ │ │ │ ├── RunningBlock.cs
│ │ │ │ └── RunningBorder.cs
│ │ │ └── ToggleBlock.cs
│ │ ├── Button
│ │ │ ├── ButtonGroup.cs
│ │ │ ├── ContextMenuButton.cs
│ │ │ ├── ContextMenuToggleButton.cs
│ │ │ ├── ProgressButton.cs
│ │ │ └── SplitButton.cs
│ │ ├── Carousel
│ │ │ ├── Carousel.cs
│ │ │ └── CarouselItem.cs
│ │ ├── ColorPicker
│ │ │ ├── ColorDropper.cs
│ │ │ └── ColorPicker.cs
│ │ ├── Cover
│ │ │ ├── CoverFlow
│ │ │ │ ├── CoverFlow.cs
│ │ │ │ └── CoverFlowItem.cs
│ │ │ └── CoverView
│ │ │ ├── CoverViewContent.cs
│ │ │ ├── CoverView.cs
│ │ │ └── CoverViewItem.cs
│ │ ├── Dialog
│ │ │ ├── DialogContainer.cs
│ │ │ └── Dialog.cs
│ │ ├── Drawer
│ │ │ ├── DrawerContainer.cs
│ │ │ └── Drawer.cs
│ │ ├── Growl
│ │ │ ├── Growl.cs
│ │ │ └── GrowlWindow.cs
│ │ ├── Image
│ │ │ ├── GifImage.cs
│ │ │ ├── ImageBlock.cs
│ │ │ └── ImageViewer.cs
│ │ ├── Input
│ │ │ ├── AutoCompleteTextBox
│ │ │ │ ├── AutoCompleteTextBox.cs
│ │ │ │ └── AutoCompleteTextBoxItem.cs
│ │ │ ├── CheckComboBox
│ │ │ │ ├── CheckComboBox.cs
│ │ │ │ └── CheckComboBoxItem.cs
│ │ │ ├── ComboBox.cs
│ │ │ ├── DatePicker.cs
│ │ │ ├── DateTimePicker.cs
│ │ │ ├── ImageSelector.cs
│ │ │ ├── NumericUpDown.cs
│ │ │ ├── PasswordBox.cs
│ │ │ ├── PinBox.cs
│ │ │ ├── SearchBar.cs
│ │ │ ├── TextBox.cs
│ │ │ ├── TimePicker.cs
│ │ │ └── WatermarkTextBox.cs
│ │ ├── Loading
│ │ │ ├── LoadingBase.cs
│ │ │ ├── LoadingCircle.cs
│ │ │ └── LoadingLine.cs
│ │ ├── Other
│ │ │ ├── AnimationPath.cs
│ │ │ ├── Badge.cs
│ │ │ ├── BlendEffectBox.cs
│ │ │ ├── Card.cs
│ │ │ ├── ChatBubble.cs
│ │ │ ├── DashedBorder.cs
│ │ │ ├── Divider.cs
│ │ │ ├── Empty.cs
│ │ │ ├── GotoTop.cs
│ │ │ ├── Gravatar.cs
│ │ │ ├── Magnifier.cs
│ │ │ ├── Notification.cs
│ │ │ ├── NotifyIcon.cs
│ │ │ ├── Pagination.cs
│ │ │ ├── Poptip.cs
│ │ │ ├── ScrollViewer.cs
│ │ │ ├── Shield.cs
│ │ │ ├── Sprite.cs
│ │ │ ├── TransitioningContentControl.cs
│ │ │ └── Watermark.cs
│ │ ├── Panel
│ │ │ ├── AxleCanvas.cs
│ │ │ ├── CirclePanel.cs
│ │ │ ├── ClipGrid.cs
│ │ │ ├── ElementGroup.cs
│ │ │ ├── FlexPanel.cs
│ │ │ ├── Grid
│ │ │ │ ├── Col.cs
│ │ │ │ └── Row.cs
│ │ │ ├── HoneycombPanel.cs
│ │ │ ├── RelativePanel.cs
│ │ │ ├── SimplePanel.cs
│ │ │ ├── SimpleStackPanel.cs
│ │ │ ├── UniformSpacingPanel.cs
│ │ │ └── WaterfallPanel.cs
│ │ ├── ProgressBar
│ │ │ ├── CircleProgressBar.cs
│ │ │ └── WaveProgressBar.cs
│ │ ├── PropertyGrid
│ │ │ ├── Editors
│ │ │ │ ├── DatePropertyEditor.cs
│ │ │ │ ├── DateTimePropertyEditor.cs
│ │ │ │ ├── EnumPropertyEditor.cs
│ │ │ │ ├── HorizontalAlignmentPropertyEditor.cs
│ │ │ │ ├── ImagePropertyEditor.cs
│ │ │ │ ├── IntegerPropertyEditor.cs
│ │ │ │ ├── NumberPropertyEditor.cs
│ │ │ │ ├── PlainTextPropertyEditor.cs
│ │ │ │ ├── PropertyEditorBase.cs
│ │ │ │ ├── ReadOnlyTextPropertyEditor.cs
│ │ │ │ ├── StringPropertyEditor.cs
│ │ │ │ ├── SwitchPropertyEditor.cs
│ │ │ │ ├── TimePropertyEditor.cs
│ │ │ │ └── VerticalAlignmentPropertyEditor.cs
│ │ │ ├── PropertyGrid.cs
│ │ │ ├── PropertyItem.cs
│ │ │ ├── PropertyItemsControl.cs
│ │ │ └── PropertyResolver.cs
│ │ ├── Rate
│ │ │ ├── Rate.cs
│ │ │ └── RateItem.cs
│ │ ├── Ribbon
│ │ │ ├── Ribbon.cs
│ │ │ ├── RibbonGroup.cs
│ │ │ ├── RibbonTab.cs
│ │ │ ├── RibbonTabHeader.cs
│ │ │ └── RibbonTabHeaderItemsControl.cs
│ │ ├── Screenshot
│ │ │ ├── Screenshot.cs
│ │ │ └── ScreenshotWindow.cs
│ │ ├── SideMenu
│ │ │ ├── SideMenu.cs
│ │ │ └── SideMenuItem.cs
│ │ ├── Slider
│ │ │ ├── CompareSlider
│ │ │ │ ├── CompareSlider.cs
│ │ │ │ └── CompareTrack.cs
│ │ │ ├── PreviewSlider.cs
│ │ │ └── RangeSlider
│ │ │ ├── RangeSlider.cs
│ │ │ ├── RangeThumb.cs
│ │ │ ├── RangeTrack.cs
│ │ │ └── TwoWayRangeBase.cs
│ │ ├── StepBar
│ │ │ ├── StepBar.cs
│ │ │ └── StepBarItem.cs
│ │ ├── TabControl
│ │ │ ├── SlidingTabContainer.cs
│ │ │ ├── TabControl.cs
│ │ │ ├── TabItem.cs
│ │ │ └── TabPanel.cs
│ │ ├── Tag
│ │ │ ├── TagContainer.cs
│ │ │ └── Tag.cs
│ │ ├── Text
│ │ │ ├── HighlightTextBlock.cs
│ │ │ ├── OutlineText.cs
│ │ │ └── SimpleText.cs
│ │ ├── Time
│ │ │ ├── CalendarWithClock.cs
│ │ │ ├── Clock
│ │ │ │ ├── ClockBase.cs
│ │ │ │ ├── Clock.cs
│ │ │ │ ├── ClockRadioButton.cs
│ │ │ │ └── ListClock.cs
│ │ │ ├── FlipClock
│ │ │ │ ├── FlipClock.cs
│ │ │ │ └── FlipNumber.cs
│ │ │ └── TimeBar
│ │ │ ├── SpeTextBlock.cs
│ │ │ └── TimeBar.cs
│ │ ├── Transfer
│ │ │ ├── Transfer.cs
│ │ │ └── TransferItem.cs
│ │ └── Window
│ │ ├── BlurWindow.cs
│ │ ├── GlowWindow.cs
│ │ ├── ImageBrowser.cs
│ │ ├── MessageBox.cs
│ │ ├── PopupWindow.cs
│ │ └── Window.cs
│ ├── Data
│ │ ├── Args
│ │ │ ├── CancelRoutedEventArgs.cs
│ │ │ ├── FunctionEventArgs`1.cs
│ │ │ ├── KeyboardHookEventArgs.cs
│ │ │ └── MouseHookEventArgs.cs
│ │ ├── DisposableObject.cs
│ │ ├── Enum
│ │ │ ├── BadgeStatus.cs
│ │ │ ├── ChatMessageType.cs
│ │ │ ├── ChatRoleType.cs
│ │ │ ├── ColLayoutStatus.cs
│ │ │ ├── DrawerShowMode.cs
│ │ │ ├── EnumDataProvider.cs
│ │ │ ├── ExpandMode.cs
│ │ │ ├── GrowlShowMode.cs
│ │ │ ├── HatchStyle.cs
│ │ │ ├── HitMode.cs
│ │ │ ├── ImageCodecFlags.cs
│ │ │ ├── InfoType.cs
│ │ │ ├── IpType.cs
│ │ │ ├── LinearLayout.cs
│ │ │ ├── MouseHookMessageType.cs
│ │ │ ├── NotifyIconInfoType.cs
│ │ │ ├── PlacementType.cs
│ │ │ ├── ResultType.cs
│ │ │ ├── RunningDirection.cs
│ │ │ ├── ShowAnimation.cs
│ │ │ ├── SideMenuItemRole.cs
│ │ │ ├── SkinType.cs
│ │ │ ├── StepStatus.cs
│ │ │ ├── StrokePosition.cs
│ │ │ ├── TextType.cs
│ │ │ ├── TipPlacement.cs
│ │ │ ├── TitlePlacementType.cs
│ │ │ ├── TransitionMode.cs
│ │ │ └── VisualWrapping.cs
│ │ ├── EnumItem.cs
│ │ ├── Flex
│ │ │ ├── FlexContentAlignment.cs
│ │ │ ├── FlexContentJustify.cs
│ │ │ ├── FlexDirection.cs
│ │ │ ├── FlexItemAlignment.cs
│ │ │ ├── FlexItemsAlignment.cs
│ │ │ └── FlexWrap.cs
│ │ ├── Gif
│ │ │ ├── GifFrameDimension.cs
│ │ │ ├── GifImageInfo.cs
│ │ │ ├── GifPropertyItem.cs
│ │ │ ├── GifPropertyItemInternal.cs
│ │ │ └── GPStream.cs
│ │ ├── GlowWindow
│ │ │ ├── ChangeScope.cs
│ │ │ ├── GlowBitmap.cs
│ │ │ ├── GlowBitmapPart.cs
│ │ │ ├── GlowDrawingContext.cs
│ │ │ └── GlowEdge.cs
│ │ ├── HandyControlConfig.cs
│ │ ├── HwndWrapper.cs
│ │ ├── Info
│ │ │ ├── GrowlInfo.cs
│ │ │ ├── ImageCodecInfo.cs
│ │ │ ├── MessageBoxInfo.cs
│ │ │ └── SystemVersionInfo.cs
│ │ ├── Operation
│ │ │ ├── OperationResult`1.cs
│ │ │ └── OperationResult.cs
│ │ ├── PanelUvSize.cs
│ │ ├── Range
│ │ │ ├── ColorRange.cs
│ │ │ ├── DateTimeRange.cs
│ │ │ ├── DoubleRange.cs
│ │ │ └── IValueRange.cs
│ │ ├── ResourceToken.cs
│ │ └── ValueBoxes.cs
│ ├── HandyControl_Shared.projitems
│ ├── HandyControl_Shared.shproj
│ ├── Input
│ │ └── SimpleMouseBinding.cs
│ ├── Interactivity
│ │ ├── Commands
│ │ │ ├── CloseWindowCommand.cs
│ │ │ ├── ControlCommands.cs
│ │ │ ├── OpenLinkCommand.cs
│ │ │ ├── PushMainWindow2TopCommand.cs
│ │ │ ├── ScreenshotCommand.cs
│ │ │ ├── ShutdownAppCommand.cs
│ │ │ └── StartScreenshotCommand.cs
│ │ ├── EventToCommand.cs
│ │ ├── IEventArgsConverter.cs
│ │ ├── MouseDragElementBehaviorEx.cs
│ │ └── RoutedEventTrigger.cs
│ ├── key.snk
│ ├── Media
│ │ ├── Animation
│ │ │ ├── DiscreteGeometryKeyFrame.cs
│ │ │ ├── EasingGeometryKeyFrame.cs
│ │ │ ├── GeometryAnimationBase.cs
│ │ │ ├── GeometryAnimation.cs
│ │ │ ├── GeometryAnimationUsingKeyFrames.cs
│ │ │ ├── GeometryKeyFrameCollection.cs
│ │ │ ├── GeometryKeyFrame.cs
│ │ │ ├── LinearGeometryKeyFrame.cs
│ │ │ ├── ResolvedKeyFrameEntry.cs
│ │ │ └── SplineGeometryKeyFrame.cs
│ │ └── Effects
│ │ ├── BrightnessEffect.cs
│ │ ├── ColorComplementEffect.cs
│ │ ├── ColorMatrixEffect.cs
│ │ ├── ContrastEffect.cs
│ │ ├── EffectBase.cs
│ │ └── GrayScaleEffect.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Langs
│ │ ├── Lang.ca-ES.resx
│ │ ├── Lang.cs.resx
│ │ ├── Lang.Designer.cs
│ │ ├── Lang.en.resx
│ │ ├── Lang.es.resx
│ │ ├── Lang.fa.resx
│ │ ├── Lang.fr.resx
│ │ ├── Lang.ja.resx
│ │ ├── Lang.ko-KR.resx
│ │ ├── Lang.pl.resx
│ │ ├── LangProvider.cs
│ │ ├── LangProvider.tt
│ │ ├── Lang.pt-BR.resx
│ │ ├── Lang.resx
│ │ ├── Lang.ru.resx
│ │ └── Lang.tr.resx
│ ├── Resources
│ │ ├── dropper.cur
│ │ ├── Effects
│ │ │ ├── BrightnessEffect.fx
│ │ │ ├── BrightnessEffect.ps
│ │ │ ├── ColorComplementEffect.fx
│ │ │ ├── ColorComplementEffect.ps
│ │ │ ├── ColorMatrixEffect.fx
│ │ │ ├── ColorMatrixEffect.ps
│ │ │ ├── ContrastEffect.fx
│ │ │ ├── ContrastEffect.ps
│ │ │ ├── GrayScaleEffect.fx
│ │ │ └── GrayScaleEffect.ps
│ │ ├── Icons
│ │ │ ├── HandyControl.Controls.AnimationPath.icon.bmp
│ │ │ ├── HandyControl.Controls.AxleCanvas.icon.bmp
│ │ │ ├── HandyControl.Controls.Badge.icon.bmp
│ │ │ ├── HandyControl.Controls.BlendEffectBox.icon.bmp
│ │ │ ├── HandyControl.Controls.ButtonGroup.icon.bmp
│ │ │ ├── HandyControl.Controls.CalendarWithClock.icon.bmp
│ │ │ ├── HandyControl.Controls.Card.icon.bmp
│ │ │ ├── HandyControl.Controls.Carousel.icon.bmp
│ │ │ ├── HandyControl.Controls.CheckComboBox.icon.bmp
│ │ │ ├── HandyControl.Controls.CirclePanel.icon.bmp
│ │ │ ├── HandyControl.Controls.CircleProgressBar.icon.bmp
│ │ │ ├── HandyControl.Controls.Clock.icon.bmp
│ │ │ ├── HandyControl.Controls.Col.icon.bmp
│ │ │ ├── HandyControl.Controls.ColorPicker.icon.bmp
│ │ │ ├── HandyControl.Controls.CompareSlider.icon.bmp
│ │ │ ├── HandyControl.Controls.ContextMenuButton.icon.bmp
│ │ │ ├── HandyControl.Controls.ContextMenuToggleButton.icon.bmp
│ │ │ ├── HandyControl.Controls.CoverFlow.icon.bmp
│ │ │ ├── HandyControl.Controls.CoverView.icon.bmp
│ │ │ ├── HandyControl.Controls.DashedBorder.icon.bmp
│ │ │ ├── HandyControl.Controls.DateTimePicker.icon.bmp
│ │ │ ├── HandyControl.Controls.Dialog.icon.bmp
│ │ │ ├── HandyControl.Controls.Divider.icon.bmp
│ │ │ ├── HandyControl.Controls.Drawer.icon.bmp
│ │ │ ├── HandyControl.Controls.Empty.icon.bmp
│ │ │ ├── HandyControl.Controls.FlexPanel.icon.bmp
│ │ │ ├── HandyControl.Controls.FlipClock.icon.bmp
│ │ │ ├── HandyControl.Controls.GifImage.icon.bmp
│ │ │ ├── HandyControl.Controls.GotoTop.icon.bmp
│ │ │ ├── HandyControl.Controls.Gravatar.icon.bmp
│ │ │ ├── HandyControl.Controls.Growl.icon.bmp
│ │ │ ├── HandyControl.Controls.HoneycombPanel.icon.bmp
│ │ │ ├── HandyControl.Controls.ImageBlock.icon.bmp
│ │ │ ├── HandyControl.Controls.ImageSelector.icon.bmp
│ │ │ ├── HandyControl.Controls.ImageViewer.icon.bmp
│ │ │ ├── HandyControl.Controls.ListClock.icon.bmp
│ │ │ ├── HandyControl.Controls.LoadingCircle.icon.bmp
│ │ │ ├── HandyControl.Controls.LoadingLine.icon.bmp
│ │ │ ├── HandyControl.Controls.Magnifier.icon.bmp
│ │ │ ├── HandyControl.Controls.NotifyIcon.icon.bmp
│ │ │ ├── HandyControl.Controls.NumericUpDown.icon.bmp
│ │ │ ├── HandyControl.Controls.OutlineText.icon.bmp
│ │ │ ├── HandyControl.Controls.Pagination.icon.bmp
│ │ │ ├── HandyControl.Controls.PinBox.icon.bmp
│ │ │ ├── HandyControl.Controls.Poptip.icon.bmp
│ │ │ ├── HandyControl.Controls.PreviewSlider.icon.bmp
│ │ │ ├── HandyControl.Controls.ProgressButton.icon.bmp
│ │ │ ├── HandyControl.Controls.PropertyGrid.icon.bmp
│ │ │ ├── HandyControl.Controls.RangeSlider.icon.bmp
│ │ │ ├── HandyControl.Controls.RelativePanel.icon.bmp
│ │ │ ├── HandyControl.Controls.Row.icon.bmp
│ │ │ ├── HandyControl.Controls.RunningBlock.icon.bmp
│ │ │ ├── HandyControl.Controls.SearchBar.icon.bmp
│ │ │ ├── HandyControl.Controls.Shield.icon.bmp
│ │ │ ├── HandyControl.Controls.SideMenu.icon.bmp
│ │ │ ├── HandyControl.Controls.SimplePanel.icon.bmp
│ │ │ ├── HandyControl.Controls.SimpleStackPanel.icon.bmp
│ │ │ ├── HandyControl.Controls.SimpleText.icon.bmp
│ │ │ ├── HandyControl.Controls.SplitButton.icon.bmp
│ │ │ ├── HandyControl.Controls.StepBar.icon.bmp
│ │ │ ├── HandyControl.Controls.TagContainer.icon.bmp
│ │ │ ├── HandyControl.Controls.Tag.icon.bmp
│ │ │ ├── HandyControl.Controls.TimeBar.icon.bmp
│ │ │ ├── HandyControl.Controls.TimePicker.icon.bmp
│ │ │ ├── HandyControl.Controls.ToggleBlock.icon.bmp
│ │ │ ├── HandyControl.Controls.Transfer.icon.bmp
│ │ │ ├── HandyControl.Controls.TransitioningContentControl.icon.bmp
│ │ │ ├── HandyControl.Controls.UniformSpacingPanel.icon.bmp
│ │ │ ├── HandyControl.Controls.WaterfallPanel.icon.bmp
│ │ │ ├── HandyControl.Controls.Watermark.icon.bmp
│ │ │ ├── HandyControl.Controls.WatermarkTextBox.icon.bmp
│ │ │ ├── HandyControl.Controls.WaveProgressBar.icon.bmp
│ │ │ └── HandyControl.Expression.Shapes.Arc.icon.bmp
│ │ └── Images
│ │ └── GlowWindow
│ │ ├── bottomleft.png
│ │ ├── bottom.png
│ │ ├── bottomright.png
│ │ ├── cornerbottomleft.png
│ │ ├── cornerbottomright.png
│ │ ├── cornertopleft.png
│ │ ├── cornertopright.png
│ │ ├── leftbottom.png
│ │ ├── left.png
│ │ ├── lefttop.png
│ │ ├── rightbottom.png
│ │ ├── right.png
│ │ ├── righttop.png
│ │ ├── topleft.png
│ │ ├── top.png
│ │ └── topright.png
│ ├── Themes
│ │ ├── Basic
│ │ │ ├── Behaviors.xaml
│ │ │ ├── Brushes.xaml
│ │ │ ├── Colors
│ │ │ │ ├── ColorsDark.xaml
│ │ │ │ ├── ColorsViolet.xaml
│ │ │ │ └── Colors.xaml
│ │ │ ├── Converters.xaml
│ │ │ ├── Effects.xaml
│ │ │ ├── Fonts.xaml
│ │ │ ├── Geometries.xaml
│ │ │ ├── Paths.xaml
│ │ │ └── Sizes.xaml
│ │ ├── Lang.xaml
│ │ ├── SharedResourceDictionary.cs
│ │ ├── SkinDark.xaml
│ │ ├── SkinDefault.xaml
│ │ ├── SkinViolet.xaml
│ │ ├── Styles
│ │ │ ├── AutoCompleteTextBox.xaml
│ │ │ ├── Badge.xaml
│ │ │ ├── Base
│ │ │ │ ├── AutoCompleteTextBoxBaseStyle.xaml
│ │ │ │ ├── BadgeBaseStyle.xaml
│ │ │ │ ├── BaseStyle.xaml
│ │ │ │ ├── ButtonBaseBaseStyle.xaml
│ │ │ │ ├── ButtonBaseStyle.xaml
│ │ │ │ ├── ButtonGroupBaseStyle.xaml
│ │ │ │ ├── CardBaseStyle.xaml
│ │ │ │ ├── ChatBubbleBaseStyle.xaml
│ │ │ │ ├── CheckBoxBaseStyle.xaml
│ │ │ │ ├── CheckComboBoxBaseStyle.xaml
│ │ │ │ ├── ColorPickerBaseStyle.xaml
│ │ │ │ ├── ComboBoxBaseStyle.xaml
│ │ │ │ ├── ContextMenuBaseStyle.xaml
│ │ │ │ ├── CoverFlowBaseStyle.xaml
│ │ │ │ ├── CoverViewBaseStyle.xaml
│ │ │ │ ├── DataGridBaseStyle.xaml
│ │ │ │ ├── DatePickerBaseStyle.xaml
│ │ │ │ ├── DateTimePickerBaseStyle.xaml
│ │ │ │ ├── DialogBaseStyle.xaml
│ │ │ │ ├── DividerBaseStyle.xaml
│ │ │ │ ├── DrawerBaseStyle.xaml
│ │ │ │ ├── ElementGroupBaseStyle.xaml
│ │ │ │ ├── EmptyBaseStyle.xaml
│ │ │ │ ├── ExpanderBaseStyle.xaml
│ │ │ │ ├── FlowDocumentBaseStyle.xaml
│ │ │ │ ├── FrameBaseStyle.xaml
│ │ │ │ ├── GotoTopBaseStyle.xaml
│ │ │ │ ├── GravatarBaseStyle.xaml
│ │ │ │ ├── GroupBoxBaseStyle.xaml
│ │ │ │ ├── ImageSelectorBaseStyle.xaml
│ │ │ │ ├── ItemsPanelTemplate.xaml
│ │ │ │ ├── LabelBaseStyle.xaml
│ │ │ │ ├── ListBoxBaseStyle.xaml
│ │ │ │ ├── ListViewBaseStyle.xaml
│ │ │ │ ├── LoadingBaseStyle.xaml
│ │ │ │ ├── LoadingCircleBaseStyle.xaml
│ │ │ │ ├── LoadingLineBaseStyle.xaml
│ │ │ │ ├── MagnifierBaseStyle.xaml
│ │ │ │ ├── MenuBaseStyle.xaml
│ │ │ │ ├── NavigationWindowBaseStyle.xaml
│ │ │ │ ├── NumericUpDownBaseStyle.xaml
│ │ │ │ ├── PasswordBoxBaseStyle.xaml
│ │ │ │ ├── PinBoxBaseStyle.xaml
│ │ │ │ ├── PoptipBaseStyle.xaml
│ │ │ │ ├── ProgressBarBaseStyle.xaml
│ │ │ │ ├── ProgressButtonBaseStyle.xaml
│ │ │ │ ├── PropertyGridBaseStyle.xaml
│ │ │ │ ├── RadioButtonBaseStyle.xaml
│ │ │ │ ├── RateBaseStyle.xaml
│ │ │ │ ├── RepeatButtonBaseStyle.xaml
│ │ │ │ ├── RunningBlockBaseStyle.xaml
│ │ │ │ ├── ScrollViewerBaseStyle.xaml
│ │ │ │ ├── SearchBarBaseStyle.xaml
│ │ │ │ ├── SeparatorBaseStyle.xaml
│ │ │ │ ├── ShieldBaseStyle.xaml
│ │ │ │ ├── SideMenuBaseStyle.xaml
│ │ │ │ ├── SliderBaseStyle.xaml
│ │ │ │ ├── SplitButtonBaseStyle.xaml
│ │ │ │ ├── StatusBarBaseStyle.xaml
│ │ │ │ ├── StepBarBaseStyle.xaml
│ │ │ │ ├── TabControlBaseStyle.xaml
│ │ │ │ ├── TagBaseStyle.xaml
│ │ │ │ ├── TextBlockBaseStyle.xaml
│ │ │ │ ├── TextBoxBaseStyle.xaml
│ │ │ │ ├── TimePickerBaseStyle.xaml
│ │ │ │ ├── ToggleBlockBaseStyle.xaml
│ │ │ │ ├── ToggleButtonBaseStyle.xaml
│ │ │ │ ├── ToolBarBaseStyle.xaml
│ │ │ │ ├── ToolTipBaseStyle.xaml
│ │ │ │ ├── TransferBaseStyle.xaml
│ │ │ │ ├── TreeViewBaseStyle.xaml
│ │ │ │ └── WatermarkBaseStyle.xaml
│ │ │ ├── BlendEffectBox.xaml
│ │ │ ├── Border.xaml
│ │ │ ├── ButtonGroup.xaml
│ │ │ ├── Button.xaml
│ │ │ ├── CalendarWithClock.xaml
│ │ │ ├── Calendar.xaml
│ │ │ ├── Card.xaml
│ │ │ ├── Carousel.xaml
│ │ │ ├── ChatBubble.xaml
│ │ │ ├── CheckBox.xaml
│ │ │ ├── CheckComboBox.xaml
│ │ │ ├── Clock.xaml
│ │ │ ├── ColorPicker.xaml
│ │ │ ├── Col.xaml
│ │ │ ├── ComboBox.xaml
│ │ │ ├── ContentControl.xaml
│ │ │ ├── ContextMenu.xaml
│ │ │ ├── CoverFlow.xaml
│ │ │ ├── CoverView.xaml
│ │ │ ├── DataGrid.xaml
│ │ │ ├── DatePicker.xaml
│ │ │ ├── DateTimePicker.xaml
│ │ │ ├── Dialog.xaml
│ │ │ ├── Divider.xaml
│ │ │ ├── Drawer.xaml
│ │ │ ├── ElementGroup.xaml
│ │ │ ├── Empty.xaml
│ │ │ ├── Expander.xaml
│ │ │ ├── FlipClock.xaml
│ │ │ ├── FloatingBlock.xaml
│ │ │ ├── FlowDocument.xaml
│ │ │ ├── Frame.xaml
│ │ │ ├── GotoTop.xaml
│ │ │ ├── Gravatar.xaml
│ │ │ ├── GridSplitter.xaml
│ │ │ ├── GroupBox.xaml
│ │ │ ├── Growl.xaml
│ │ │ ├── ImageSelector.xaml
│ │ │ ├── ImageViewer.xaml
│ │ │ ├── Label.xaml
│ │ │ ├── ListBox.xaml
│ │ │ ├── ListView.xaml
│ │ │ ├── Loading.xaml
│ │ │ ├── Magnifier.xaml
│ │ │ ├── Menu.xaml
│ │ │ ├── MessageBox.xaml
│ │ │ ├── NavigationWindow.xaml
│ │ │ ├── Notification.xaml
│ │ │ ├── NumericUpDown.xaml
│ │ │ ├── Pagination.xaml
│ │ │ ├── PasswordBox.xaml
│ │ │ ├── PinBox.xaml
│ │ │ ├── Poptip.xaml
│ │ │ ├── PopupWindow.xaml
│ │ │ ├── ProgressBar.xaml
│ │ │ ├── ProgressButton.xaml
│ │ │ ├── PropertyGrid.xaml
│ │ │ ├── RadioButton.xaml
│ │ │ ├── Rate.xaml
│ │ │ ├── Rectangle.xaml
│ │ │ ├── RepeatButton.xaml
│ │ │ ├── Ribbon.xaml
│ │ │ ├── RichTextBox.xaml
│ │ │ ├── RunningBlock.xaml
│ │ │ ├── Screenshot.xaml
│ │ │ ├── ScrollViewer.xaml
│ │ │ ├── SearchBar.xaml
│ │ │ ├── Separator.xaml
│ │ │ ├── Shield.xaml
│ │ │ ├── SideMenu.xaml
│ │ │ ├── SimpleItemsControl.xaml
│ │ │ ├── Slider.xaml
│ │ │ ├── SplitButton.xaml
│ │ │ ├── Sprite.xaml
│ │ │ ├── StatusBar.xaml
│ │ │ ├── StepBar.xaml
│ │ │ ├── TabControl.xaml
│ │ │ ├── Tag.xaml
│ │ │ ├── TextBlock.xaml
│ │ │ ├── TextBox.xaml
│ │ │ ├── TimeBar.xaml
│ │ │ ├── TimePicker.xaml
│ │ │ ├── ToggleBlock.xaml
│ │ │ ├── ToggleButton.xaml
│ │ │ ├── ToolBar.xaml
│ │ │ ├── ToolTip.xaml
│ │ │ ├── Transfer.xaml
│ │ │ ├── TransitioningContentControl.xaml
│ │ │ ├── TreeView.xaml
│ │ │ ├── Watermark.xaml
│ │ │ └── Window.xaml
│ │ ├── Theme_40.txt
│ │ ├── Theme.cs
│ │ ├── Theme_GE45.txt
│ │ ├── Theme.xaml
│ │ └── XamlCombine.exe
│ └── Tools
│ ├── Converter
│ │ ├── Boolean2BooleanReConverter.cs
│ │ ├── Boolean2StrConverter.cs
│ │ ├── Boolean2VisibilityReConverter.cs
│ │ ├── BooleanArr2BooleanConverter.cs
│ │ ├── BooleanArr2VisibilityConverter.cs
│ │ ├── BorderCircularClipConverter.cs
│ │ ├── BorderCircularConverter.cs
│ │ ├── BorderClipConverter.cs
│ │ ├── ColLayoutConverter.cs
│ │ ├── Color2ChannelAConverter.cs
│ │ ├── Color2HexStrConverter.cs
│ │ ├── CornerRadiusSplitConverter.cs
│ │ ├── DataGridSelectAllButtonVisibilityConverter.cs
│ │ ├── Double2GridLengthConverter.cs
│ │ ├── DoubleMinConverter.cs
│ │ ├── Int2StrConverter.cs
│ │ ├── Long2FileSizeConverter.cs
│ │ ├── Number2PercentageConverter.cs
│ │ ├── Object2BooleanConverter.cs
│ │ ├── Object2BooleanReConverter.cs
│ │ ├── Object2StringConverter.cs
│ │ ├── Object2VisibilityConverter.cs
│ │ ├── Object2VisibilityReConverter.cs
│ │ ├── RectangleCircularConverter.cs
│ │ ├── String2VisibilityConverter.cs
│ │ ├── String2VisibilityReConverter.cs
│ │ ├── ThicknessSplitConverter.cs
│ │ └── TreeViewItemMarginConverter.cs
│ ├── Extension
│ │ ├── ColLayout.cs
│ │ ├── ColorExtension.cs
│ │ ├── DependencyObjectExtension.cs
│ │ ├── DialogExtension.cs
│ │ ├── EnumerableExtension.cs
│ │ ├── FrameworkElementExtension.cs
│ │ ├── GeometryExtension.cs
│ │ ├── LangExtension.cs
│ │ ├── StringExtension.cs
│ │ ├── UIElementExtension.cs
│ │ └── ValueExtension.cs
│ ├── Generator
│ │ ├── ComparerGenerator.cs
│ │ ├── DateTimeRangeComparer.cs
│ │ ├── GithubGravatarGenerator.cs
│ │ └── HatchBrushGenerator.cs
│ ├── GifImageAnimator.cs
│ ├── GlobalShortcut.cs
│ ├── Helper
│ │ ├── AnimationHelper.cs
│ │ ├── ArithmeticHelper.cs
│ │ ├── BindingHelper.cs
│ │ ├── ColorHelper.cs
│ │ ├── ConfigHelper.cs
│ │ ├── DesignerHelper.cs
│ │ ├── DpiHelper.cs
│ │ ├── FullScreenHelper.cs
│ │ ├── IconHelper.cs
│ │ ├── InputClickHelper.cs
│ │ ├── ResourceHelper.cs
│ │ ├── ScreenHelper.cs
│ │ ├── SecurityHelper.cs
│ │ ├── SingleOpenHelper.cs
│ │ ├── SystemHelper.cs
│ │ ├── TextHelper.cs
│ │ ├── TokenizerHelper.cs
│ │ ├── TouchDragMoveWindowHelper.cs
│ │ ├── ValidateHelper.cs
│ │ ├── VisualHelper.cs
│ │ └── WindowHelper.cs
│ ├── Hook
│ │ ├── ClipboardHook.cs
│ │ ├── KeyboardHook.cs
│ │ ├── MouseHook.cs
│ │ └── SystemMenuHook.cs
│ ├── Interop
│ │ ├── Handle
│ │ │ ├── BitmapHandle.cs
│ │ │ ├── CommonHandles.cs
│ │ │ ├── HandleCollector.cs
│ │ │ ├── IconHandle.cs
│ │ │ ├── SafeFileMappingHandle.cs
│ │ │ └── WpfSafeHandle.cs
│ │ ├── InteropMethods.cs
│ │ └── InteropValues.cs
│ ├── RegexJudgment.cs
│ ├── RegexPatterns.cs
│ ├── StyleSelector
│ │ ├── ButtonGroupItemStyleSelector.cs
│ │ ├── ComboBoxItemCapsuleStyleSelector.cs
│ │ └── TabItemCapsuleStyleSelector.cs
│ └── ValidationRule
│ ├── NoBlankTextRule.cs
│ └── RegexRule.cs
├── Microsoft.Expression.Drawing
│ ├── Drawing
│ │ ├── BezierCurveFlattener.cs
│ │ ├── CommonExtensions.cs
│ │ ├── ExceptionStringTable.cs
│ │ ├── GeometryHelper.cs
│ │ ├── MarchLocation.cs
│ │ ├── MarchStopReason.cs
│ │ ├── MathHelper.cs
│ │ ├── PathFigureHelper.cs
│ │ ├── PathGeometryHelper.cs
│ │ ├── PathSegmentData.cs
│ │ ├── PathSegmentHelper.cs
│ │ ├── PolylineData.cs
│ │ ├── PolylineHelper.cs
│ │ ├── RandomEngine.cs
│ │ └── SimpleSegment.cs
│ ├── Media
│ │ ├── ArcGeometrySource.cs
│ │ ├── DrawingPropertyChangedEventArgs.cs
│ │ ├── DrawingPropertyMetadata.cs
│ │ ├── DrawingPropertyMetadataOptions.cs
│ │ ├── GeometryEffectConverter.cs
│ │ ├── GeometryEffect.cs
│ │ ├── GeometrySource`1.cs
│ │ ├── IArcGeometrySourceParameters.cs
│ │ ├── IGeometrySource.cs
│ │ ├── IGeometrySourceExtensions.cs
│ │ ├── IGeometrySourceParameters.cs
│ │ ├── InvalidateGeometryReasons.cs
│ │ ├── IShape.cs
│ │ ├── SketchGeometryEffect.cs
│ │ └── UnitType.cs
│ ├── Microsoft.Expression.Drawing.projitems
│ ├── Microsoft.Expression.Drawing.shproj
│ └── Shapes
│ ├── Arc.cs
│ └── PrimitiveShape.cs
├── Microsoft.Expression.Interactions
│ ├── AdornerContainer.cs
│ ├── ExceptionStringTable.cs
│ ├── ExtendedVisualStateManager.cs
│ ├── FluidMoveBehaviorBase.cs
│ ├── FluidMoveBehavior.cs
│ ├── FluidMoveScope.cs
│ ├── Microsoft.Expression.Interactions.projitems
│ ├── Microsoft.Expression.Interactions.shproj
│ ├── MouseDragElementBehavior.cs
│ ├── TagType.cs
│ └── TransitionEffect.cs
├── Microsoft.Windows.Shell
│ ├── JumpItem.cs
│ ├── JumpItemRejectionReason.cs
│ ├── JumpItemsRejectedEventArgs.cs
│ ├── JumpItemsRemovedEventArgs.cs
│ ├── JumpList.cs
│ ├── JumpPath.cs
│ ├── JumpTask.cs
│ ├── Microsoft.Windows.Shell.projitems
│ ├── Microsoft.Windows.Shell.shproj
│ ├── Standard
│ │ ├── AC.cs
│ │ ├── APPDOCLISTTYPE.cs
│ │ ├── Assert.cs
│ │ ├── BI.cs
│ │ ├── BITMAPINFO.cs
│ │ ├── BITMAPINFOHEADER.cs
│ │ ├── BLENDFUNCTION.cs
│ │ ├── CHANGEFILTERSTRUCT.cs
│ │ ├── CLSID.cs
│ │ ├── CombineRgnResult.cs
│ │ ├── CREATESTRUCT.cs
│ │ ├── CS.cs
│ │ ├── DeviceCap.cs
│ │ ├── DOGIF.cs
│ │ ├── DoubleUtilities.cs
│ │ ├── DpiHelper.cs
│ │ ├── DWMFLIP3D.cs
│ │ ├── DWMNCRP.cs
│ │ ├── DWM_SIT.cs
│ │ ├── DWM_TIMING_INFO.cs
│ │ ├── DWMWA.cs
│ │ ├── ErrorModes.cs
│ │ ├── Facility.cs
│ │ ├── FO.cs
│ │ ├── FOF.cs
│ │ ├── GCLP.cs
│ │ ├── GPS.cs
│ │ ├── GWL.cs
│ │ ├── HCF.cs
│ │ ├── HIGHCONTRAST.cs
│ │ ├── HRESULT.cs
│ │ ├── HT.cs
│ │ ├── IApplicationDestinations.cs
│ │ ├── IApplicationDocumentLists.cs
│ │ ├── ICustomDestinationList.cs
│ │ ├── IEnumIDList.cs
│ │ ├── IEnumObjects.cs
│ │ ├── IID.cs
│ │ ├── INPUT.cs
│ │ ├── INPUT_TYPE.cs
│ │ ├── IObjectArray.cs
│ │ ├── IObjectCollection.cs
│ │ ├── IObjectWithAppUserModelId.cs
│ │ ├── IObjectWithProgId.cs
│ │ ├── IPropertyStore.cs
│ │ ├── IShellFolder.cs
│ │ ├── IShellItem2.cs
│ │ ├── IShellItemArray.cs
│ │ ├── IShellItem.cs
│ │ ├── IShellLinkW.cs
│ │ ├── ITaskbarList2.cs
│ │ ├── ITaskbarList3.cs
│ │ ├── ITaskbarList4.cs
│ │ ├── ITaskbarList.cs
│ │ ├── KDC.cs
│ │ ├── LOGFONT.cs
│ │ ├── ManagedIStream.cs
│ │ ├── MARGINS.cs
│ │ ├── MessageHandler.cs
│ │ ├── MessageWindow.cs
│ │ ├── MF.cs
│ │ ├── MINMAXINFO.cs
│ │ ├── MONITORINFO.cs
│ │ ├── MOUSEEVENTF.cs
│ │ ├── MOUSEINPUT.cs
│ │ ├── MSGFLT.cs
│ │ ├── MSGFLTINFO.cs
│ │ ├── NativeMethods.cs
│ │ ├── NIF.cs
│ │ ├── NIIF.cs
│ │ ├── NIM.cs
│ │ ├── NONCLIENTMETRICS.cs
│ │ ├── NOTIFYICONDATA.cs
│ │ ├── OLECMDEXECOPT.cs
│ │ ├── OLECMDF.cs
│ │ ├── OLECMDID.cs
│ │ ├── PKEY.cs
│ │ ├── POINT.cs
│ │ ├── PROPVARIANT.cs
│ │ ├── READYSTATE.cs
│ │ ├── RECT.cs
│ │ ├── RefPOINT.cs
│ │ ├── RefRECT.cs
│ │ ├── RGBQUAD.cs
│ │ ├── RGN.cs
│ │ ├── SafeConnectionPointCookie.cs
│ │ ├── SafeDC.cs
│ │ ├── SafeFindHandle.cs
│ │ ├── SafeGdiplusStartupToken.cs
│ │ ├── SafeHBITMAP.cs
│ │ ├── SC.cs
│ │ ├── SFGAO.cs
│ │ ├── SHARDAPPIDINFO.cs
│ │ ├── SHARDAPPIDINFOIDLIST.cs
│ │ ├── SHARDAPPIDINFOLINK.cs
│ │ ├── SHARD.cs
│ │ ├── SHCONTF.cs
│ │ ├── SHFILEOPSTRUCT.cs
│ │ ├── SHGDN.cs
│ │ ├── SIATTRIBFLAGS.cs
│ │ ├── SICHINT.cs
│ │ ├── SIGDN.cs
│ │ ├── SIZE.cs
│ │ ├── SLGP.cs
│ │ ├── SM.cs
│ │ ├── SPI.cs
│ │ ├── SPIF.cs
│ │ ├── StartupInput.cs
│ │ ├── StartupOutput.cs
│ │ ├── STATE_SYSTEM.cs
│ │ ├── Status.cs
│ │ ├── StockObject.cs
│ │ ├── STPF.cs
│ │ ├── STR_GPS.cs
│ │ ├── SW.cs
│ │ ├── SWP.cs
│ │ ├── TBPF.cs
│ │ ├── THB.cs
│ │ ├── THBF.cs
│ │ ├── THUMBBUTTON.cs
│ │ ├── TITLEBARINFO.cs
│ │ ├── TITLEBARINFOEX.cs
│ │ ├── ULW.cs
│ │ ├── UNSIGNED_RATIO.cs
│ │ ├── Utility.cs
│ │ ├── Verify.cs
│ │ ├── Win32Error.cs
│ │ ├── WIN32_FIND_DATAW.cs
│ │ ├── Win32Value.cs
│ │ ├── WINDOWPLACEMENT.cs
│ │ ├── WINDOWPOS.cs
│ │ ├── WINDOWTHEMEATTRIBUTETYPE.cs
│ │ ├── WM.cs
│ │ ├── WNDCLASSEX.cs
│ │ ├── WndProc.cs
│ │ ├── WndProcHook.cs
│ │ ├── WS.cs
│ │ ├── WS_EX.cs
│ │ ├── WTA_OPTIONS.cs
│ │ ├── WTNCA.cs
│ │ └── WVR.cs
│ ├── SystemCommands.cs
│ ├── SystemParameters2.cs
│ ├── TaskbarItemInfo.cs
│ ├── TaskbarItemProgressState.cs
│ ├── ThumbButtonInfoCollection.cs
│ ├── ThumbButtonInfo.cs
│ ├── WindowChrome.cs
│ └── WindowChromeWorker.cs
└── System.Windows.Interactivity
├── AttachableCollection`1.cs
├── Behavior`1.cs
├── BehaviorCollection.cs
├── Behavior.cs
├── DefaultTriggerAttribute.cs
├── EventTriggerBase`1.cs
├── EventTriggerBase.cs
├── EventTrigger.cs
├── IAttachedObject.cs
├── Interaction.cs
├── InvokeCommandAction.cs
├── NameResolvedEventArgs.cs
├── NameResolver.cs
├── PreviewInvokeEventArgs.cs
├── System.Windows.Interactivity.projitems
├── System.Windows.Interactivity.shproj
├── TriggerAction`1.cs
├── TriggerActionCollection.cs
├── TriggerAction.cs
├── TriggerBase.cs
├── TriggerCollection.cs
└── TypeConstraintAttribute.cs
385 directories, 1837 files
标签: HandyControl Control wpf and dyc
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论