├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ ├── custom.md │ └── feature_request.yaml └── workflows │ └── build.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Policy ├── README-cn.md ├── README.md ├── SECURITY.md ├── doc ├── .gitignore ├── _config.yml ├── package-lock.json ├── package.json ├── scaffolds │ ├── draft.md │ ├── page.md │ └── post.md ├── source │ ├── _posts │ │ └── home.md │ └── 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 │ │ ├── InfoType │ │ │ └── index.md │ │ └── 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 └── themes │ └── next │ ├── .all-contributorsrc │ ├── .bowerrc │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .gitignore │ ├── .stylintrc │ ├── .travis.yml │ ├── LICENSE.md │ ├── README.md │ ├── _config.yml │ ├── bower.json │ ├── crowdin.yml │ ├── gulpfile.coffee │ ├── languages │ └── zh-CN.yml │ ├── layout │ ├── _custom │ │ ├── head.swig │ │ ├── header.swig │ │ └── sidebar.swig │ ├── _layout.swig │ ├── _macro │ │ ├── menu │ │ │ ├── menu-badge.swig │ │ │ └── menu-item.swig │ │ ├── post-collapse.swig │ │ ├── post.swig │ │ └── sidebar.swig │ ├── _partials │ │ ├── comments.swig │ │ ├── footer.swig │ │ ├── github-banner.swig │ │ ├── head │ │ │ ├── external-fonts.swig │ │ │ ├── head-unique.swig │ │ │ └── head.swig │ │ ├── header │ │ │ ├── brand.swig │ │ │ ├── index.swig │ │ │ ├── menu.swig │ │ │ └── sub-menu.swig │ │ ├── page │ │ │ ├── breadcrumb.swig │ │ │ └── page-header.swig │ │ ├── pagination.swig │ │ ├── post-edit.swig │ │ ├── post │ │ │ ├── post-copyright.swig │ │ │ ├── post-related.swig │ │ │ ├── reward.swig │ │ │ └── wechat-subscriber.swig │ │ ├── search │ │ │ ├── algolia-search.swig │ │ │ ├── index.swig │ │ │ ├── localsearch.swig │ │ │ └── swiftype.swig │ │ └── share │ │ │ ├── add-this.swig │ │ │ ├── baidushare.swig │ │ │ └── likely.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 │ ├── _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 │ │ │ ├── disqus.swig │ │ │ ├── disqusjs.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 │ ├── archive.swig │ ├── category.swig │ ├── index.swig │ ├── page.swig │ ├── post.swig │ ├── schedule.swig │ └── tag.swig │ ├── package.json │ ├── 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 │ │ │ │ │ ├── header.styl │ │ │ │ │ ├── headerband.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-tags.styl │ │ │ │ │ ├── post-title.styl │ │ │ │ │ ├── post-type.styl │ │ │ │ │ ├── post-widgets.styl │ │ │ │ │ └── post.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-toc.styl │ │ │ │ │ ├── sidebar-toggle.styl │ │ │ │ │ ├── sidebar.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 │ │ ├── _mixins │ │ │ ├── Gemini.styl │ │ │ ├── Mist.styl │ │ │ ├── Muse.styl │ │ │ ├── Pisces.styl │ │ │ ├── base.styl │ │ │ └── custom.styl │ │ ├── _schemes │ │ │ ├── Gemini │ │ │ │ └── index.styl │ │ │ ├── Mist │ │ │ │ ├── _base.styl │ │ │ │ ├── _header.styl │ │ │ │ ├── _logo.styl │ │ │ │ ├── _menu.styl │ │ │ │ ├── _posts-expanded.styl │ │ │ │ ├── _search.styl │ │ │ │ ├── index.styl │ │ │ │ ├── outline │ │ │ │ │ └── outline.styl │ │ │ │ └── sidebar │ │ │ │ │ └── sidebar-blogroll.styl │ │ │ ├── Muse │ │ │ │ ├── _layout.styl │ │ │ │ ├── _logo.styl │ │ │ │ ├── _menu.styl │ │ │ │ ├── _search.styl │ │ │ │ ├── index.styl │ │ │ │ └── sidebar │ │ │ │ │ └── sidebar-blogroll.styl │ │ │ └── Pisces │ │ │ │ ├── _brand.styl │ │ │ │ ├── _layout.styl │ │ │ │ ├── _menu.styl │ │ │ │ ├── _sidebar.styl │ │ │ │ ├── _sub-menu.styl │ │ │ │ └── index.styl │ │ ├── _variables │ │ │ ├── Gemini.styl │ │ │ ├── Mist.styl │ │ │ ├── Muse.styl │ │ │ ├── Pisces.styl │ │ │ ├── base.styl │ │ │ └── custom.styl │ │ └── main.styl │ ├── fonts │ │ └── .gitkeep │ ├── 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 │ ├── .jshintrc │ ├── helpers.js │ └── intern.js ├── extension └── visual studio │ ├── HandyControl.sln │ ├── HandyControl │ ├── HandyControl.csproj │ ├── HandyControlPackage.cs │ ├── License.txt │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── icon_100_100.png │ ├── icon_300_300.png │ └── source.extension.vsixmanifest │ ├── WpfApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DesignTimeResources.xaml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WpfApp.csproj │ ├── WpfApp.vstemplate │ ├── icon.ico │ └── packages.config │ ├── WpfAppMVVMPrism │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Bootstrapper.cs │ ├── DesignTimeResources.xaml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WpfAppMVVMPrism.csproj │ ├── WpfAppMVVMPrism.vstemplate │ └── icon.ico │ ├── WpfAppMVVMStylet │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Bootstrapper.cs │ ├── DesignTimeResources.xaml │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RootView.xaml │ ├── RootView.xaml.cs │ ├── RootViewModel.cs │ ├── WpfAppMVVMStylet.csproj │ ├── WpfAppMVVMStylet.vstemplate │ └── icon.ico │ ├── WpfCoreApp │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── DesignTimeResources.xaml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WpfCoreApp.csproj │ ├── WpfCoreApp.vstemplate │ └── icon.ico │ ├── WpfCoreAppPrism │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Bootstrapper.cs │ ├── DesignTimeResources.xaml │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowViewModel.cs │ ├── ProjectTemplate.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WpfCoreAppPrism.csproj │ ├── WpfCoreAppPrism.vstemplate │ └── icon.ico │ └── WpfCoreAppStylet │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Bootstrapper.cs │ ├── DesignTimeResources.xaml │ ├── ProjectTemplate.csproj │ ├── Properties │ └── AssemblyInfo.cs │ ├── RootView.xaml │ ├── RootView.xaml.cs │ ├── RootViewModel.cs │ ├── WpfCoreAppStylet.csproj │ ├── WpfCoreAppStylet.vstemplate │ └── icon.ico └── src ├── .run ├── HandyControlDemo_Avalonia.run.xml ├── HandyControlDemo_Net40.run.xml └── HandyControlDemo_Net_GE45.run.xml ├── Avalonia ├── .editorconfig ├── Directory.Build.props ├── HandyControlDemo_Avalonia │ ├── App.axaml │ ├── App.axaml.cs │ ├── Data │ │ ├── DemoInfo.json │ │ ├── Enum │ │ │ └── DemoType.cs │ │ ├── MessageToken.cs │ │ ├── Model │ │ │ ├── DemoDataModel.cs │ │ │ ├── DemoInfoModel.cs │ │ │ └── DemoItemModel.cs │ │ └── ResourceToken.cs │ ├── HandyControlDemo_Avalonia.csproj │ ├── MainWindow.axaml │ ├── MainWindow.axaml.cs │ ├── Program.cs │ ├── Properties │ │ └── Langs │ │ │ ├── Lang.Designer.cs │ │ │ ├── Lang.ca-ES.resx │ │ │ ├── Lang.cs.resx │ │ │ ├── Lang.en.resx │ │ │ ├── Lang.es.resx │ │ │ ├── Lang.fa.resx │ │ │ ├── Lang.fr.resx │ │ │ ├── Lang.ja.resx │ │ │ ├── Lang.ko-KR.resx │ │ │ ├── Lang.pl.resx │ │ │ ├── Lang.pt-BR.resx │ │ │ ├── Lang.resx │ │ │ ├── Lang.ru.resx │ │ │ └── Lang.tr.resx │ ├── Resources │ │ ├── Img │ │ │ ├── cloud.png │ │ │ └── icon.ico │ │ └── Themes │ │ │ ├── Basic │ │ │ ├── Brushes.axaml │ │ │ ├── Converters.axaml │ │ │ └── Geometries.axaml │ │ │ └── Theme.axaml │ ├── Service │ │ └── Data │ │ │ └── DataService.cs │ ├── Tools │ │ ├── Converter │ │ │ └── StringRepeatConverter.cs │ │ └── Helper │ │ │ └── AssemblyHelper.cs │ ├── UserControl │ │ ├── Main │ │ │ ├── LeftMainContent.axaml │ │ │ ├── LeftMainContent.axaml.cs │ │ │ ├── MainContent.axaml │ │ │ ├── MainContent.axaml.cs │ │ │ ├── MainWindowContent.axaml │ │ │ └── MainWindowContent.axaml.cs │ │ └── Styles │ │ │ ├── BorderDemo.axaml │ │ │ ├── BorderDemo.axaml.cs │ │ │ ├── BrushDemo.axaml │ │ │ ├── BrushDemo.axaml.cs │ │ │ ├── ButtonDemo.axaml │ │ │ ├── ButtonDemo.axaml.cs │ │ │ ├── CalendarDemo.axaml │ │ │ ├── CalendarDemo.axaml.cs │ │ │ ├── CheckBoxDemo.axaml │ │ │ ├── CheckBoxDemo.axaml.cs │ │ │ ├── ComboBoxDemo.axaml │ │ │ ├── ComboBoxDemo.axaml.cs │ │ │ ├── ExpanderDemo.axaml │ │ │ ├── ExpanderDemo.axaml.cs │ │ │ ├── LabelDemo.axaml │ │ │ ├── LabelDemo.axaml.cs │ │ │ ├── ListBoxDemo.axaml │ │ │ ├── ListBoxDemo.axaml.cs │ │ │ ├── MenuDemo.axaml │ │ │ ├── MenuDemo.axaml.cs │ │ │ ├── NativeProgressBarDemo.axaml │ │ │ ├── NativeProgressBarDemo.axaml.cs │ │ │ ├── NativeScrollViewerDemo.axaml │ │ │ ├── NativeScrollViewerDemo.axaml.cs │ │ │ ├── NativeTabControlDemo.axaml │ │ │ ├── NativeTabControlDemo.axaml.cs │ │ │ ├── NumericUpDownDemo.axaml │ │ │ ├── NumericUpDownDemo.axaml.cs │ │ │ ├── RadioButtonDemo.axaml │ │ │ ├── RadioButtonDemo.axaml.cs │ │ │ ├── RepeatButtonDemo.axaml │ │ │ ├── RepeatButtonDemo.axaml.cs │ │ │ ├── SliderDemo.axaml │ │ │ ├── SliderDemo.axaml.cs │ │ │ ├── TextBlockDemo.axaml │ │ │ ├── TextBlockDemo.axaml.cs │ │ │ ├── TextBoxDemo.axaml │ │ │ ├── TextBoxDemo.axaml.cs │ │ │ ├── ToggleButtonDemo.axaml │ │ │ ├── ToggleButtonDemo.axaml.cs │ │ │ ├── TreeViewDemo.axaml │ │ │ └── TreeViewDemo.axaml.cs │ ├── ViewModel │ │ ├── Common │ │ │ └── InputElementDemoViewModel.cs │ │ ├── DemoViewModelBase`1.cs │ │ ├── Main │ │ │ └── MainViewModel.cs │ │ └── ViewModelLocator.cs │ └── app.manifest └── HandyControl_Avalonia │ ├── Controls │ ├── Attach │ │ ├── BackgroundSwitchElement.cs │ │ ├── BorderElement.cs │ │ ├── ContentControlAttach.cs │ │ ├── IconElement.cs │ │ ├── IconSwitchElement.cs │ │ ├── InfoElement.cs │ │ ├── ItemsControlAttach.cs │ │ ├── MenuAttach.cs │ │ ├── ScrollViewerAttach.cs │ │ ├── StatusSwitchElement.cs │ │ ├── TextBlockAttach.cs │ │ ├── TipElement.cs │ │ ├── TitleElement.cs │ │ ├── ToggleButtonAttach.cs │ │ └── VisualElement.cs │ ├── Other │ │ └── DashedBorder.cs │ ├── Panel │ │ ├── AxleCanvas.cs │ │ └── UniformSpacingPanel.cs │ └── TabControl │ │ └── SlidingTabContainer.cs │ ├── Data │ ├── Enum │ │ ├── PlacementType.cs │ │ ├── TitlePlacementType.cs │ │ └── VisualWrapping.cs │ ├── PanelUvSize.cs │ └── ResourceToken.cs │ ├── HandyControl_Avalonia.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ └── Langs │ │ ├── Lang.Designer.cs │ │ ├── Lang.ca-ES.resx │ │ ├── Lang.cs.resx │ │ ├── Lang.en.resx │ │ ├── Lang.es.resx │ │ ├── Lang.fa.resx │ │ ├── Lang.fr.resx │ │ ├── Lang.ja.resx │ │ ├── Lang.ko-KR.resx │ │ ├── Lang.pl.resx │ │ ├── Lang.pt-BR.resx │ │ ├── Lang.resx │ │ ├── Lang.ru.resx │ │ └── Lang.tr.resx │ ├── Themes │ ├── Basic │ │ ├── Brushes.axaml │ │ ├── Colors.axaml │ │ ├── Converters.axaml │ │ ├── Effects.axaml │ │ ├── Fonts.axaml │ │ ├── Geometries.axaml │ │ ├── Paths.axaml │ │ └── Sizes.axaml │ ├── Styles │ │ ├── Border.axaml │ │ ├── Button.axaml │ │ ├── ButtonSpinner.axaml │ │ ├── Calendar.axaml │ │ ├── CheckBox.axaml │ │ ├── ComboBox.axaml │ │ ├── ContentControl.axaml │ │ ├── ContextMenu.axaml │ │ ├── DataValidationErrors.axaml │ │ ├── Expander.axaml │ │ ├── ItemsControl.axaml │ │ ├── Label.axaml │ │ ├── ListBox.axaml │ │ ├── Menu.axaml │ │ ├── NumericUpDown.axaml │ │ ├── PopupRoot.axaml │ │ ├── ProgressBar.axaml │ │ ├── RadioButton.axaml │ │ ├── RepeatButton.axaml │ │ ├── ScrollViewer.axaml │ │ ├── Slider.axaml │ │ ├── TabControl.axaml │ │ ├── TextBlock.axaml │ │ ├── TextBox.axaml │ │ ├── ToggleButton.axaml │ │ ├── ToolTip.axaml │ │ ├── TreeView.axaml │ │ ├── UserControl.axaml │ │ └── Window.axaml │ ├── Theme.axaml │ └── Theme.axaml.cs │ └── Tools │ ├── Converter │ ├── BorderCircularClipConverter.cs │ ├── BorderCircularConverter.cs │ ├── BorderClipConverter.cs │ ├── CornerRadiusSplitConverter.cs │ ├── Double2GridLengthConverter.cs │ ├── DoubleExpandConverter.cs │ ├── GeometrySpacingConverter.cs │ └── ThicknessSplitConverter.cs │ ├── Extension │ └── ValueExtension.cs │ ├── Helper │ ├── MathHelper.cs │ ├── ResourceHelper.cs │ └── VisualHelper.cs │ └── StyleSelector │ ├── TabItemCapsuleStyleSelector.cs │ └── ThemeSelector.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 │ └── Themes │ └── Theme.xaml └── Shared ├── HandyControlDemo_Code ├── DemoHelper.cs └── HandyControlDemo_Code.csproj ├── HandyControlDemo_Shared ├── 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.Designer.cs │ │ ├── Lang.ca-ES.resx │ │ ├── Lang.cs.resx │ │ ├── Lang.en.resx │ │ ├── Lang.es.resx │ │ ├── Lang.fa.resx │ │ ├── Lang.fr.resx │ │ ├── Lang.ja.resx │ │ ├── Lang.ko-KR.resx │ │ ├── Lang.pl.resx │ │ ├── Lang.pt-BR.resx │ │ ├── Lang.resx │ │ ├── Lang.ru.resx │ │ ├── Lang.tr.resx │ │ ├── LangProvider.cs │ │ └── LangProvider.tt ├── Resources │ ├── Img │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── Album │ │ │ ├── 1.jpg │ │ │ ├── 10.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 │ │ ├── Chat │ │ │ ├── chat_back1.jpg │ │ │ └── chat_back2.jpg │ │ ├── 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 │ │ ├── QQ │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ ├── Slack.png │ │ ├── b1.jpg │ │ ├── b2.jpg │ │ ├── car_chase.gif │ │ ├── chrome_dragon.png │ │ ├── cloud.png │ │ ├── icon-white.ico │ │ ├── icon.ico │ │ └── under_construction.gif │ ├── Registry.txt │ ├── Themes │ │ ├── Basic │ │ │ ├── Basic.xaml │ │ │ ├── Brushes.xaml │ │ │ ├── Colors │ │ │ │ ├── Dark.xaml │ │ │ │ └── Light.xaml │ │ │ ├── Converters.xaml │ │ │ ├── Fonts.xaml │ │ │ └── Geometries.xaml │ │ ├── SkinDark.xaml │ │ ├── SkinDefault.xaml │ │ ├── Styles │ │ │ └── Style.xaml │ │ └── Theme.xaml │ ├── fabric-icons.ttf │ └── 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 │ │ ├── TextDialog.xaml │ │ ├── TextDialog.xaml.cs │ │ ├── TextDialogWithTimer.xaml │ │ └── TextDialogWithTimer.xaml.cs │ ├── Controls │ │ ├── AnimationPathDemo.xaml │ │ ├── AnimationPathDemo.xaml.cs │ │ ├── AutoCompleteTextBoxDemo.xaml │ │ ├── AutoCompleteTextBoxDemo.xaml.cs │ │ ├── BadgeDemo.xaml │ │ ├── BadgeDemo.xaml.cs │ │ ├── ButtonGroupDemo.xaml │ │ ├── ButtonGroupDemo.xaml.cs │ │ ├── CalendarWithClockDemo.xaml │ │ ├── CalendarWithClockDemo.xaml.cs │ │ ├── CardDemo.xaml │ │ ├── CardDemo.xaml.cs │ │ ├── CarouselDemo.xaml │ │ ├── CarouselDemo.xaml.cs │ │ ├── ChatBubbleDemo.xaml │ │ ├── ChatBubbleDemo.xaml.cs │ │ ├── CheckComboBoxDemo.xaml │ │ ├── CheckComboBoxDemo.xaml.cs │ │ ├── CirclePanelDemo.xaml │ │ ├── CirclePanelDemo.xaml.cs │ │ ├── ClockDemo.xaml │ │ ├── ClockDemo.xaml.cs │ │ ├── ColorPickerDemo.xaml │ │ ├── ColorPickerDemo.xaml.cs │ │ ├── ComboBoxDemo.xaml │ │ ├── ComboBoxDemo.xaml.cs │ │ ├── CompareSliderDemo.xaml │ │ ├── CompareSliderDemo.xaml.cs │ │ ├── ConfettiCannonDemo.xaml │ │ ├── ConfettiCannonDemo.xaml.cs │ │ ├── CoverFlowDemo.xaml │ │ ├── CoverFlowDemo.xaml.cs │ │ ├── CoverViewDemo.xaml │ │ ├── CoverViewDemo.xaml.cs │ │ ├── DatePickerDemo.xaml │ │ ├── DatePickerDemo.xaml.cs │ │ ├── DateTimePickerDemo.xaml │ │ ├── DateTimePickerDemo.xaml.cs │ │ ├── DialogDemo.xaml │ │ ├── DialogDemo.xaml.cs │ │ ├── DividerDemo.xaml │ │ ├── DividerDemo.xaml.cs │ │ ├── DrawerDemo.xaml │ │ ├── DrawerDemo.xaml.cs │ │ ├── ElementGroupDemo.xaml │ │ ├── ElementGroupDemo.xaml.cs │ │ ├── FlexPanelDemo.xaml │ │ ├── FlexPanelDemo.xaml.cs │ │ ├── FlipClockDemo.xaml │ │ ├── FlipClockDemo.xaml.cs │ │ ├── FloatingBlockDemo.xaml │ │ ├── FloatingBlockDemo.xaml.cs │ │ ├── GifImageDemo.xaml │ │ ├── GifImageDemo.xaml.cs │ │ ├── GotoTopDemo.xaml │ │ ├── GotoTopDemo.xaml.cs │ │ ├── GravatarDemo.xaml │ │ ├── GravatarDemo.xaml.cs │ │ ├── GridDemo.xaml │ │ ├── GridDemo.xaml.cs │ │ ├── GrowlDemo.xaml │ │ ├── GrowlDemo.xaml.cs │ │ ├── HoneycombPanelDemo.xaml │ │ ├── HoneycombPanelDemo.xaml.cs │ │ ├── ImageBlockDemo.xaml │ │ ├── ImageBlockDemo.xaml.cs │ │ ├── ImageBrowserDemo.xaml │ │ ├── ImageBrowserDemo.xaml.cs │ │ ├── ImageSelectorDemo.xaml │ │ ├── ImageSelectorDemo.xaml.cs │ │ ├── LoadingDemo.xaml │ │ ├── LoadingDemo.xaml.cs │ │ ├── MagnifierDemo.xaml │ │ ├── MagnifierDemo.xaml.cs │ │ ├── NotificationDemo.xaml │ │ ├── NotificationDemo.xaml.cs │ │ ├── NotifyIconDemo.xaml │ │ ├── NotifyIconDemo.xaml.cs │ │ ├── NumericUpDownDemo.xaml │ │ ├── NumericUpDownDemo.xaml.cs │ │ ├── OutlineTextDemo.xaml │ │ ├── OutlineTextDemo.xaml.cs │ │ ├── PaginationDemo.xaml │ │ ├── PaginationDemo.xaml.cs │ │ ├── PasswordBoxDemo.xaml │ │ ├── PasswordBoxDemo.xaml.cs │ │ ├── PinBoxDemo.xaml │ │ ├── PinBoxDemo.xaml.cs │ │ ├── PoptipDemo.xaml │ │ ├── PoptipDemo.xaml.cs │ │ ├── PreviewSliderDemo.xaml │ │ ├── PreviewSliderDemo.xaml.cs │ │ ├── ProgressBarDemo.xaml │ │ ├── ProgressBarDemo.xaml.cs │ │ ├── ProgressButtonDemo.xaml │ │ ├── ProgressButtonDemo.xaml.cs │ │ ├── PropertyGridDemo.xaml │ │ ├── PropertyGridDemo.xaml.cs │ │ ├── RangeSliderDemo.xaml │ │ ├── RangeSliderDemo.xaml.cs │ │ ├── RateDemo.xaml │ │ ├── RateDemo.xaml.cs │ │ ├── RelativePanelDemo.xaml │ │ ├── RelativePanelDemo.xaml.cs │ │ ├── RunningBlockDemo.xaml │ │ ├── RunningBlockDemo.xaml.cs │ │ ├── ScreenshotDemo.xaml │ │ ├── ScreenshotDemo.xaml.cs │ │ ├── ScrollViewerDemo.xaml │ │ ├── ScrollViewerDemo.xaml.cs │ │ ├── SearchBarDemo.xaml │ │ ├── SearchBarDemo.xaml.cs │ │ ├── ShieldDemo.xaml │ │ ├── ShieldDemo.xaml.cs │ │ ├── SideMenuDemo.xaml │ │ ├── SideMenuDemo.xaml.cs │ │ ├── SplitButtonDemo.xaml │ │ ├── SplitButtonDemo.xaml.cs │ │ ├── SpriteDemo.xaml │ │ ├── SpriteDemo.xaml.cs │ │ ├── StepBarDemo.xaml │ │ ├── StepBarDemo.xaml.cs │ │ ├── TabControlDemo.xaml │ │ ├── TabControlDemo.xaml.cs │ │ ├── TagDemo.xaml │ │ ├── TagDemo.xaml.cs │ │ ├── TextBoxDemo.xaml │ │ ├── TextBoxDemo.xaml.cs │ │ ├── TimeBarDemo.xaml │ │ ├── TimeBarDemo.xaml.cs │ │ ├── TimePickerDemo.xaml │ │ ├── TimePickerDemo.xaml.cs │ │ ├── TransferDemo.xaml │ │ ├── TransferDemo.xaml.cs │ │ ├── TransitioningContentControlDemo.xaml │ │ ├── TransitioningContentControlDemo.xaml.cs │ │ ├── UniformSpacingPanelDemo.xaml │ │ ├── UniformSpacingPanelDemo.xaml.cs │ │ ├── WaterfallPanelDemo.xaml │ │ ├── WaterfallPanelDemo.xaml.cs │ │ ├── WatermarkDemo.xaml │ │ ├── WatermarkDemo.xaml.cs │ │ ├── WindowDemo.xaml │ │ └── WindowDemo.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 │ │ ├── BorderDemo.xaml │ │ ├── BorderDemo.xaml.cs │ │ ├── BrushDemo.xaml │ │ ├── BrushDemo.xaml.cs │ │ ├── ButtonDemo.xaml │ │ ├── ButtonDemo.xaml.cs │ │ ├── CalendarDemo.xaml │ │ ├── CalendarDemo.xaml.cs │ │ ├── CheckBoxDemo.xaml │ │ ├── CheckBoxDemo.xaml.cs │ │ ├── DataGridDemo.xaml │ │ ├── DataGridDemo.xaml.cs │ │ ├── ExpanderDemo.xaml │ │ ├── ExpanderDemo.xaml.cs │ │ ├── FlowDocumentDemo.xaml │ │ ├── FlowDocumentDemo.xaml.cs │ │ ├── FrameDemo.xaml │ │ ├── FrameDemo.xaml.cs │ │ ├── GeometryDemo.xaml │ │ ├── GeometryDemo.xaml.cs │ │ ├── GroupBoxDemo.xaml │ │ ├── GroupBoxDemo.xaml.cs │ │ ├── LabelDemo.xaml │ │ ├── LabelDemo.xaml.cs │ │ ├── ListBoxDemo.xaml │ │ ├── ListBoxDemo.xaml.cs │ │ ├── ListViewDemo.xaml │ │ ├── ListViewDemo.xaml.cs │ │ ├── MenuDemo.xaml │ │ ├── MenuDemo.xaml.cs │ │ ├── NativeComboBoxDemo.xaml │ │ ├── NativeComboBoxDemo.xaml.cs │ │ ├── NativeDatePickerDemo.xaml │ │ ├── NativeDatePickerDemo.xaml.cs │ │ ├── NativePasswordBoxDemo.xaml │ │ ├── NativePasswordBoxDemo.xaml.cs │ │ ├── NativeProgressBarDemo.xaml │ │ ├── NativeProgressBarDemo.xaml.cs │ │ ├── NativeScrollViewerDemo.xaml │ │ ├── NativeScrollViewerDemo.xaml.cs │ │ ├── NativeTabControlDemo.xaml │ │ ├── NativeTabControlDemo.xaml.cs │ │ ├── NativeTextBoxDemo.xaml │ │ ├── NativeTextBoxDemo.xaml.cs │ │ ├── NativeWindowDemo.xaml │ │ ├── NativeWindowDemo.xaml.cs │ │ ├── RadioButtonDemo.xaml │ │ ├── RadioButtonDemo.xaml.cs │ │ ├── RepeatButtonDemo.xaml │ │ ├── RepeatButtonDemo.xaml.cs │ │ ├── RichTextBoxDemo.xaml │ │ ├── RichTextBoxDemo.xaml.cs │ │ ├── SliderDemo.xaml │ │ ├── SliderDemo.xaml.cs │ │ ├── TextBlockDemo.xaml │ │ ├── TextBlockDemo.xaml.cs │ │ ├── ToggleButtonDemo.xaml │ │ ├── ToggleButtonDemo.xaml.cs │ │ ├── ToolBarDemo.xaml │ │ ├── ToolBarDemo.xaml.cs │ │ ├── TreeViewDemo.xaml │ │ └── TreeViewDemo.xaml.cs │ └── Tools │ │ ├── EffectsDemo.xaml │ │ ├── EffectsDemo.xaml.cs │ │ ├── GeometryAnimationDemo.xaml │ │ ├── GeometryAnimationDemo.xaml.cs │ │ ├── HatchBrushGeneratorDemo.xaml │ │ └── HatchBrushGeneratorDemo.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 └── app.manifest ├── HandyControl_Shared ├── Collections │ └── ManualObservableCollection`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 │ │ ├── SelectAllButtonAttach.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 │ ├── ConfettiCannon │ │ ├── ConfettiCannon.cs │ │ └── ConfettiCannonContainer.cs │ ├── Cover │ │ ├── CoverFlow │ │ │ ├── CoverFlow.cs │ │ │ └── CoverFlowItem.cs │ │ └── CoverView │ │ │ ├── CoverView.cs │ │ │ ├── CoverViewContent.cs │ │ │ └── CoverViewItem.cs │ ├── Dialog │ │ ├── Dialog.cs │ │ └── DialogContainer.cs │ ├── Drawer │ │ ├── Drawer.cs │ │ └── DrawerContainer.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 │ │ ├── VisualAdornerContainer.cs │ │ └── Watermark.cs │ ├── Panel │ │ ├── AxleCanvas.cs │ │ ├── CirclePanel.cs │ │ ├── ClipGrid.cs │ │ ├── ElementGroup.cs │ │ ├── FlexPanel.cs │ │ ├── Grid │ │ │ ├── Col.cs │ │ │ └── Row.cs │ │ ├── HoneycombPanel.cs │ │ ├── InverseStackPanel.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 │ │ ├── Tag.cs │ │ └── TagContainer.cs │ ├── Text │ │ ├── HighlightTextBlock.cs │ │ ├── OutlineText.cs │ │ └── SimpleText.cs │ ├── Time │ │ ├── CalendarWithClock.cs │ │ ├── Clock │ │ │ ├── Clock.cs │ │ │ ├── ClockBase.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 │ │ ├── ResultType.cs │ │ ├── RunningDirection.cs │ │ ├── ShowAnimation.cs │ │ ├── SideMenuItemRole.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 │ │ ├── GPStream.cs │ │ ├── GifFrameDimension.cs │ │ ├── GifImageInfo.cs │ │ ├── GifPropertyItem.cs │ │ └── GifPropertyItemInternal.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.cs │ │ └── OperationResult`1.cs │ ├── PanelUvSize.cs │ ├── Range │ │ ├── ColorRange.cs │ │ ├── DateTimeRange.cs │ │ ├── DoubleRange.cs │ │ └── IValueRange.cs │ ├── ResourceToken.cs │ └── ValueBoxes.cs ├── DesignTime │ ├── DesignTimeResources.xaml │ └── IntellisenseResources.cs ├── HandyControl_Shared.projitems ├── HandyControl_Shared.shproj ├── HandyControls │ ├── Attach │ │ ├── BrushAttach.cs │ │ ├── DataGridAttach.cs │ │ ├── ListBoxAttach.cs │ │ ├── MenuAttach.cs │ │ ├── TreeViewAttach.cs │ │ └── WindowAttach.cs │ ├── BindToEnum │ │ ├── EnumBindingSourceExtension.cs │ │ ├── EnumDescriptionTypeConverter.cs │ │ └── LocalizedDescriptionAttribute.cs │ ├── Controls │ │ ├── Carousel!.cs │ │ ├── CheckTreeView.cs │ │ ├── CoverView.cs │ │ ├── Loading │ │ │ ├── BusyIndicator.cs │ │ │ └── LoadingIndicator.cs │ │ ├── Persian │ │ │ ├── PersianCalendar │ │ │ │ ├── Automation │ │ │ │ │ ├── CalendarAutomationPeer.cs │ │ │ │ │ ├── CalendarButtonAutomationPeer.cs │ │ │ │ │ └── CalendarDayButtonAutomationPeer.cs │ │ │ │ ├── CalendarBlackoutDatesCollection.cs │ │ │ │ ├── CalendarButton.cs │ │ │ │ ├── CalendarDateChangedEventArgs.cs │ │ │ │ ├── CalendarDateRange.cs │ │ │ │ ├── CalendarDateRangeChangingEventArgs.cs │ │ │ │ ├── CalendarDayButton.cs │ │ │ │ ├── CalendarItem.cs │ │ │ │ ├── CalendarMode.cs │ │ │ │ ├── CalendarModeChangedEventArgs.cs │ │ │ │ ├── CalendarSelectionChangedEventArgs.cs │ │ │ │ ├── CalendarSelectionMode.cs │ │ │ │ ├── DateTimeHelper.cs │ │ │ │ ├── KeyboardHelper.cs │ │ │ │ ├── PersianCalendar.cs │ │ │ │ ├── PersianCalendarHelper.cs │ │ │ │ ├── SelectedDatesCollection.cs │ │ │ │ └── VisualStates.cs │ │ │ ├── PersianCalendarWithClock.cs │ │ │ ├── PersianDatePicker │ │ │ │ ├── Automation │ │ │ │ │ └── DatePickerAutomationPeer.cs │ │ │ │ ├── DatePickerDateValidationErrorEventArgs.cs │ │ │ │ ├── DatePickerFormat.cs │ │ │ │ ├── DatePickerTextBox.cs │ │ │ │ └── PersianDatePicker.cs │ │ │ └── PersianDateTimePicker.cs │ │ ├── SpeedoMeter │ │ │ ├── Converter │ │ │ │ ├── Positive2Nagative.cs │ │ │ │ ├── SpeedConverter.cs │ │ │ │ └── ValueToBrushConverter.cs │ │ │ └── SpeedoMeter.cs │ │ ├── SplashWindow │ │ │ ├── ISplashWindow.cs │ │ │ └── SplashWindow.cs │ │ └── Window!.cs │ ├── DynamicLanguage │ │ ├── BaseLocalizationListener.cs │ │ ├── BindingLocalizationConverter.cs │ │ ├── BindingLocalizationListener.cs │ │ ├── CultureChangedEventManager.cs │ │ ├── ILocalizationProvider.cs │ │ ├── KeyLocalizationListener.cs │ │ ├── LocalizationExtension.cs │ │ ├── LocalizationManager.cs │ │ ├── ResxLocalizationProvider.cs │ │ └── TranslationProviderTypeConverter.cs │ ├── PersianDateUtil │ │ ├── PersianDateTime.cs │ │ ├── PersianDateTimeToString.cs │ │ └── PersianUtil.cs │ ├── ThemeManager │ │ ├── AccentColorSet.cs │ │ ├── ColorPalette │ │ │ ├── ColorPaletteResources.cs │ │ │ ├── ColorPresetResources.cs │ │ │ └── PresetManager.cs │ │ ├── DesignMode.cs │ │ ├── IntellisenseResourcesBase.cs │ │ ├── Markup │ │ │ ├── DynamicColorExtension.cs │ │ │ ├── StaticColorExtension.cs │ │ │ ├── StaticResourceExtension.cs │ │ │ └── ThemeResourceHelper.cs │ │ ├── ResourceDictionaryEx.cs │ │ ├── ResourceDictionaryHelper.cs │ │ ├── Theme.cs │ │ ├── ThemeDictionary.cs │ │ ├── ThemeManager.cs │ │ ├── ThemeResources.cs │ │ └── TypedEventHandler.cs │ └── Tools │ │ ├── Behavior │ │ └── TaskbarRebuildBehavior.cs │ │ ├── BindablePropertyBase.cs │ │ ├── BindingProxy.cs │ │ ├── Collection │ │ ├── OptimizedObservableCollection.cs │ │ ├── ThreadSafe │ │ │ ├── DispatchedObservableCollection.cs │ │ │ ├── EventArgsCache.cs │ │ │ ├── IReadOnlyObservableCollection.cs │ │ │ ├── ObservableCollectionBase.cs │ │ │ ├── PendingEvent.cs │ │ │ ├── PendingEventType.cs │ │ │ └── PendingEvent`1.cs │ │ ├── ThreadSafeObservableCollection.cs │ │ ├── UndoRedo │ │ │ ├── ModuloArithmetic.cs │ │ │ ├── RingBuffer.cs │ │ │ └── UndoRedoRingBuffer.cs │ │ ├── UndoRedoList.cs │ │ └── UndoRedoObservableCollection.cs │ │ ├── Command │ │ ├── AsyncCommand!1.cs │ │ ├── DelegateCommand.cs │ │ ├── Internals │ │ │ ├── AsyncCommand │ │ │ │ ├── AsyncCommand.cs │ │ │ │ ├── AsyncCommandBase.cs │ │ │ │ ├── CancelAsyncCommand.cs │ │ │ │ ├── CommandBase.cs │ │ │ │ ├── IAsyncCommand.cs │ │ │ │ ├── ManualResetAsyncCommand.cs │ │ │ │ └── NotifyTaskCompletion.cs │ │ │ └── DelegateCommand │ │ │ │ ├── AsyncDelegateCommand.cs │ │ │ │ ├── IDelegateCommand.cs │ │ │ │ └── SyncDelegateCommand.cs │ │ ├── RelayCommand.cs │ │ └── SimpleRelayCommand.cs │ │ ├── Converter │ │ ├── PersianDateConverter.cs │ │ ├── ProgressBarWidthConverter.cs │ │ └── StringRepeatConverter.cs │ │ ├── Extension │ │ ├── CollectionExtension.cs │ │ ├── CryptographyExtension.cs │ │ ├── DateTimeExtension.cs │ │ ├── DictionaryExtension.cs │ │ ├── EnumerableExtension.cs │ │ ├── Internals │ │ │ ├── CollectionViewExtension.cs │ │ │ ├── EnumeratorWithIndex.cs │ │ │ ├── Transformer │ │ │ │ ├── ICulturedStringTransformer.cs │ │ │ │ ├── IStringTransformer.cs │ │ │ │ ├── To.cs │ │ │ │ ├── ToLowerCase.cs │ │ │ │ ├── ToSentenceCase.cs │ │ │ │ ├── ToTitleCase.cs │ │ │ │ └── ToUpperCase.cs │ │ │ └── Truncation │ │ │ │ ├── FixedLengthTruncator.cs │ │ │ │ ├── FixedNumberOfCharactersTruncator.cs │ │ │ │ ├── FixedNumberOfWordsTruncator.cs │ │ │ │ ├── ITruncator.cs │ │ │ │ ├── TruncateFrom.cs │ │ │ │ └── Truncator.cs │ │ ├── ListExtension.cs │ │ ├── MergedDictionariesExtension.cs │ │ ├── ObjectExtension.cs │ │ ├── StringExtension!1.cs │ │ └── VisualTree.cs │ │ ├── Helper │ │ ├── ApplicationHelper.Message.cs │ │ ├── ApplicationHelper.Registry.cs │ │ ├── ApplicationHelper.cs │ │ ├── ColorHelper.cs │ │ ├── ConvertHelper.cs │ │ ├── CryptographyHelper.cs │ │ ├── DispatcherHelper.cs │ │ ├── GenericCompare.cs │ │ ├── Github Update │ │ │ ├── UpdateHelper.cs │ │ │ ├── UpdateHelperJsonContext.cs │ │ │ └── UpdateInfo.cs │ │ ├── GlobalDataHelper.cs │ │ ├── IniHelper.cs │ │ ├── Internals │ │ │ └── PolymorphicJsonConverter.cs │ │ ├── MicaHelper.cs │ │ ├── OSVersionHelper.cs │ │ ├── ProcessInfoHelper.cs │ │ ├── RegistryHelper.cs │ │ ├── TaskbarHelper.cs │ │ ├── ThemeAnimationHelper.cs │ │ ├── WindowHelper!.cs │ │ └── XmlHelper.cs │ │ ├── Logging │ │ ├── Internals │ │ │ ├── Formatters │ │ │ │ ├── DefaultLoggerFormatter.cs │ │ │ │ └── ILoggerFormatter.cs │ │ │ ├── Handlers │ │ │ │ ├── DebugLoggerHandler.cs │ │ │ │ └── FileLoggerHandler.cs │ │ │ ├── ILoggerHandler.cs │ │ │ ├── ILoggerHandlerManager.cs │ │ │ ├── LogMessage.cs │ │ │ └── LogPublisher.cs │ │ └── Logger.cs │ │ └── Markup │ │ ├── ColorBrightnessExtension.cs │ │ ├── IfExtension.cs │ │ ├── Internals │ │ └── MultiBindingExtensionBase.cs │ │ └── UpdatableMarkupExtension.cs ├── Input │ └── SimpleMouseBinding.cs ├── Interactivity │ ├── Commands │ │ ├── CloseWindowCommand.cs │ │ ├── ControlCommands.cs │ │ ├── OpenLinkCommand.cs │ │ ├── PushMainWindow2TopCommand.cs │ │ ├── ScreenshotCommand.cs │ │ ├── ShutdownAppCommand.cs │ │ └── StartScreenshotCommand.cs │ ├── EventToCommand.cs │ ├── IEventArgsConverter.cs │ ├── LaunchUriOrFileAction.cs │ ├── MouseDragElementBehaviorEx.cs │ └── RoutedEventTrigger.cs ├── Media │ ├── Animation │ │ ├── DiscreteGeometryKeyFrame.cs │ │ ├── EasingGeometryKeyFrame.cs │ │ ├── GeometryAnimation.cs │ │ ├── GeometryAnimationBase.cs │ │ ├── GeometryAnimationUsingKeyFrames.cs │ │ ├── GeometryKeyFrame.cs │ │ ├── GeometryKeyFrameCollection.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.Designer.cs │ │ ├── Lang.ca-ES.resx │ │ ├── Lang.cs.resx │ │ ├── Lang.en.resx │ │ ├── Lang.es.resx │ │ ├── Lang.fa.resx │ │ ├── Lang.fr.resx │ │ ├── Lang.ja.resx │ │ ├── Lang.ko-KR.resx │ │ ├── Lang.pl.resx │ │ ├── Lang.pt-BR.resx │ │ ├── Lang.resx │ │ ├── Lang.ru.resx │ │ ├── Lang.tr.resx │ │ ├── LangProvider.cs │ │ └── LangProvider.tt ├── Resources │ ├── 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.ConfettiCannon.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.Tag.icon.bmp │ │ ├── HandyControl.Controls.TagContainer.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 │ │ │ ├── bottom.png │ │ │ ├── bottomleft.png │ │ │ ├── bottomright.png │ │ │ ├── cornerbottomleft.png │ │ │ ├── cornerbottomright.png │ │ │ ├── cornertopleft.png │ │ │ ├── cornertopright.png │ │ │ ├── left.png │ │ │ ├── leftbottom.png │ │ │ ├── lefttop.png │ │ │ ├── right.png │ │ │ ├── rightbottom.png │ │ │ ├── righttop.png │ │ │ ├── top.png │ │ │ ├── topleft.png │ │ │ └── topright.png │ └── dropper.cur ├── Themes │ ├── Basic │ │ ├── Behaviors.xaml │ │ ├── Brushes.xaml │ │ ├── Colors │ │ │ ├── Dark.xaml │ │ │ └── Light.xaml │ │ ├── Converters.xaml │ │ ├── Effects.xaml │ │ ├── Fonts.xaml │ │ ├── Geometries.xaml │ │ ├── Paths.xaml │ │ └── Sizes.xaml │ ├── Lang.xaml │ ├── SharedResourceDictionary.cs │ └── 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 │ │ ├── HandyControls │ │ │ ├── ModernListBoxBaseStyles.xaml │ │ │ ├── PersianDatePickerBaseStyle.xaml │ │ │ └── PersianDateTimePickerBaseStyle.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 │ │ ├── Button.xaml │ │ ├── ButtonGroup.xaml │ │ ├── Calendar.xaml │ │ ├── CalendarWithClock.xaml │ │ ├── Card.xaml │ │ ├── Carousel.xaml │ │ ├── ChatBubble.xaml │ │ ├── CheckBox.xaml │ │ ├── CheckComboBox.xaml │ │ ├── Clock.xaml │ │ ├── Col.xaml │ │ ├── ColorPicker.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 │ │ ├── HandyControls │ │ ├── BusyIndicator.xaml │ │ ├── CheckTreeView.xaml │ │ ├── CommonStyles.xaml │ │ ├── LoadingIndicator.xaml │ │ ├── PersianCalendar.xaml │ │ ├── PersianCalendarWithClock.xaml │ │ ├── PersianDatePicker.xaml │ │ ├── PersianDateTimePicker.xaml │ │ └── SpeedoMeter.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 ├── 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 │ │ ├── ConfigHelper.cs │ │ ├── ControlTokenManager`1.cs │ │ ├── DesignerHelper.cs │ │ ├── DpiHelper.cs │ │ ├── FullScreenHelper.cs │ │ ├── IconHelper.cs │ │ ├── InputClickHelper.cs │ │ ├── ResourceHelper.cs │ │ ├── ScreenHelper.cs │ │ ├── SecurityHelper.cs │ │ ├── SingleOpenHelper.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 └── key.snk ├── 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 │ ├── GeometryEffect.cs │ ├── GeometryEffectConverter.cs │ ├── GeometrySource`1.cs │ ├── IArcGeometrySourceParameters.cs │ ├── IGeometrySource.cs │ ├── IGeometrySourceExtensions.cs │ ├── IGeometrySourceParameters.cs │ ├── IShape.cs │ ├── InvalidateGeometryReasons.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 ├── FluidMoveBehavior.cs ├── FluidMoveBehaviorBase.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 │ ├── CREATESTRUCT.cs │ ├── CS.cs │ ├── CombineRgnResult.cs │ ├── DOGIF.cs │ ├── DWMFLIP3D.cs │ ├── DWMNCRP.cs │ ├── DWMWA.cs │ ├── DWM_SIT.cs │ ├── DWM_TIMING_INFO.cs │ ├── DeviceCap.cs │ ├── DoubleUtilities.cs │ ├── DpiHelper.cs │ ├── ErrorModes.cs │ ├── FO.cs │ ├── FOF.cs │ ├── Facility.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 │ ├── IShellItem.cs │ ├── IShellItem2.cs │ ├── IShellItemArray.cs │ ├── IShellLinkW.cs │ ├── ITaskbarList.cs │ ├── ITaskbarList2.cs │ ├── ITaskbarList3.cs │ ├── ITaskbarList4.cs │ ├── KDC.cs │ ├── LOGFONT.cs │ ├── MARGINS.cs │ ├── MF.cs │ ├── MINMAXINFO.cs │ ├── MONITORINFO.cs │ ├── MOUSEEVENTF.cs │ ├── MOUSEINPUT.cs │ ├── MSGFLT.cs │ ├── MSGFLTINFO.cs │ ├── ManagedIStream.cs │ ├── MessageHandler.cs │ ├── MessageWindow.cs │ ├── NIF.cs │ ├── NIIF.cs │ ├── NIM.cs │ ├── NONCLIENTMETRICS.cs │ ├── NOTIFYICONDATA.cs │ ├── NativeMethods.cs │ ├── OLECMDEXECOPT.cs │ ├── OLECMDF.cs │ ├── OLECMDID.cs │ ├── PKEY.cs │ ├── POINT.cs │ ├── PROPVARIANT.cs │ ├── READYSTATE.cs │ ├── RECT.cs │ ├── RGBQUAD.cs │ ├── RGN.cs │ ├── RefPOINT.cs │ ├── RefRECT.cs │ ├── SC.cs │ ├── SFGAO.cs │ ├── SHARD.cs │ ├── SHARDAPPIDINFO.cs │ ├── SHARDAPPIDINFOIDLIST.cs │ ├── SHARDAPPIDINFOLINK.cs │ ├── SHCONTF.cs │ ├── SHFILEOPSTRUCT.cs │ ├── SHGDN.cs │ ├── SIATTRIBFLAGS.cs │ ├── SICHINT.cs │ ├── SIGDN.cs │ ├── SIZE.cs │ ├── SLGP.cs │ ├── SM.cs │ ├── SPI.cs │ ├── SPIF.cs │ ├── STATE_SYSTEM.cs │ ├── STPF.cs │ ├── STR_GPS.cs │ ├── SW.cs │ ├── SWP.cs │ ├── SafeConnectionPointCookie.cs │ ├── SafeDC.cs │ ├── SafeFindHandle.cs │ ├── SafeGdiplusStartupToken.cs │ ├── SafeHBITMAP.cs │ ├── StartupInput.cs │ ├── StartupOutput.cs │ ├── Status.cs │ ├── StockObject.cs │ ├── TBPF.cs │ ├── THB.cs │ ├── THBF.cs │ ├── THUMBBUTTON.cs │ ├── TITLEBARINFO.cs │ ├── TITLEBARINFOEX.cs │ ├── ULW.cs │ ├── UNSIGNED_RATIO.cs │ ├── Utility.cs │ ├── Verify.cs │ ├── WIN32_FIND_DATAW.cs │ ├── WINDOWPLACEMENT.cs │ ├── WINDOWPOS.cs │ ├── WINDOWTHEMEATTRIBUTETYPE.cs │ ├── WM.cs │ ├── WNDCLASSEX.cs │ ├── WS.cs │ ├── WS_EX.cs │ ├── WTA_OPTIONS.cs │ ├── WTNCA.cs │ ├── WVR.cs │ ├── Win32Error.cs │ ├── Win32Value.cs │ ├── WndProc.cs │ └── WndProcHook.cs ├── SystemCommands.cs ├── SystemParameters2.cs ├── TaskbarItemInfo.cs ├── TaskbarItemProgressState.cs ├── ThumbButtonInfo.cs ├── ThumbButtonInfoCollection.cs ├── WindowChrome.cs └── WindowChromeWorker.cs └── System.Windows.Interactivity ├── AttachableCollection`1.cs ├── Behavior.cs ├── BehaviorCollection.cs ├── Behavior`1.cs ├── DefaultTriggerAttribute.cs ├── EventTrigger.cs ├── EventTriggerBase.cs ├── EventTriggerBase`1.cs ├── IAttachedObject.cs ├── Interaction.cs ├── InvokeCommandAction.cs ├── NameResolvedEventArgs.cs ├── NameResolver.cs ├── PreviewInvokeEventArgs.cs ├── System.Windows.Interactivity.projitems ├── System.Windows.Interactivity.shproj ├── TriggerAction.cs ├── TriggerActionCollection.cs ├── TriggerAction`1.cs ├── TriggerBase.cs ├── TriggerCollection.cs └── TypeConstraintAttribute.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/LICENSE -------------------------------------------------------------------------------- /Policy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/Policy -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/README-cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/SECURITY.md -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | public/ 7 | .deploy*/ 8 | .vs -------------------------------------------------------------------------------- /doc/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/_config.yml -------------------------------------------------------------------------------- /doc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/package-lock.json -------------------------------------------------------------------------------- /doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/package.json -------------------------------------------------------------------------------- /doc/scaffolds/draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/scaffolds/draft.md -------------------------------------------------------------------------------- /doc/scaffolds/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/scaffolds/page.md -------------------------------------------------------------------------------- /doc/scaffolds/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/scaffolds/post.md -------------------------------------------------------------------------------- /doc/source/_posts/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/_posts/home.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/borderElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/borderElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/dataGridAttach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/dataGridAttach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/dropDownElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/dropDownElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/edgeElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/edgeElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/iconElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/iconElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/iconSwitchElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/iconSwitchElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/imageAttach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/imageAttach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/infoElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/infoElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/panelElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/panelElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/passwordBoxAttach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/passwordBoxAttach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/rectangleAttach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/rectangleAttach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/statusSwitchElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/statusSwitchElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/textBlockAttach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/textBlockAttach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/tipElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/tipElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/titleElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/titleElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/visualElement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/visualElement/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/windowAttach/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/attach/windowAttach/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/behaviors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/behaviors/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/brushes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/brushes/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/colors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/colors/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/converters/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/converters/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/effects/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/effects/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/fonts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/fonts/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/geometries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/geometries/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/paths/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/paths/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/basic_xaml/sizes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/basic_xaml/sizes/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/breaking_changes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/breaking_changes/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/data/GrowlInfo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/data/GrowlInfo/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/data/InfoType/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/data/InfoType/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/data/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/data/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/badge/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/badge/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/blurWindow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/blurWindow/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/card/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/card/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/carousel/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/carousel/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/chatBubble/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/chatBubble/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/clock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/clock/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/comboBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/comboBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/coverFlow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/coverFlow/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/coverView/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/coverView/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/datePicker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/datePicker/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/dialog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/dialog/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/divider/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/divider/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/drawer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/drawer/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/flipClock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/flipClock/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/gifImage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/gifImage/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/glowWindow/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/glowWindow/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/gotoTop/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/gotoTop/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/gravatar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/gravatar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/grid/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/grid/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/growl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/growl/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/imageBlock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/imageBlock/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/loading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/loading/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/magnifier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/magnifier/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/messageBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/messageBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/notifyIcon/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/notifyIcon/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/pagination/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/pagination/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/pinBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/pinBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/popTip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/popTip/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/rate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/rate/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/screenshot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/screenshot/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/searchBar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/searchBar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/shield/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/shield/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/sideMenu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/sideMenu/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/simpleText/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/simpleText/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/sprite/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/sprite/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/stepBar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/stepBar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/tabControl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/tabControl/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/tag/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/tag/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/textBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/textBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/timeBar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/timeBar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/timePicker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/timePicker/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/transfer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/transfer/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/watermark/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/watermark/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/window/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/extend_controls/window/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/langs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/langs/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/border/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/border/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/button/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/button/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/calendar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/calendar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/checkBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/checkBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/comboBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/comboBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/dataGrid/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/dataGrid/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/datePicker/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/datePicker/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/expander/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/expander/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/frame/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/frame/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/groupBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/groupBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/image/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/image/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/label/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/label/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/listBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/listBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/listView/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/listView/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/menu/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/menu/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/separator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/separator/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/slider/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/slider/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/statusBar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/statusBar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/tabControl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/tabControl/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/textBlock/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/textBlock/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/textBox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/textBox/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/toolBar/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/toolBar/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/toolTip/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/toolTip/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/treeView/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/treeView/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/window/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/native_controls/window/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/quick_start/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/quick_start/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/tnx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/tnx/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/tools/effect/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/tools/effect/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/tools/hatchBrushGenerator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/tools/hatchBrushGenerator/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/tools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/source/handycontrol/tools/index.md -------------------------------------------------------------------------------- /doc/source/handycontrol/tools/morphingAnimation/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: MorphingAnimation 3 | --- 4 | -------------------------------------------------------------------------------- /doc/themes/next/.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.all-contributorsrc -------------------------------------------------------------------------------- /doc/themes/next/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "source/lib" 3 | } 4 | -------------------------------------------------------------------------------- /doc/themes/next/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.editorconfig -------------------------------------------------------------------------------- /doc/themes/next/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.eslintrc.json -------------------------------------------------------------------------------- /doc/themes/next/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.gitattributes -------------------------------------------------------------------------------- /doc/themes/next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.gitignore -------------------------------------------------------------------------------- /doc/themes/next/.stylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.stylintrc -------------------------------------------------------------------------------- /doc/themes/next/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/.travis.yml -------------------------------------------------------------------------------- /doc/themes/next/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/LICENSE.md -------------------------------------------------------------------------------- /doc/themes/next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/README.md -------------------------------------------------------------------------------- /doc/themes/next/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/_config.yml -------------------------------------------------------------------------------- /doc/themes/next/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/bower.json -------------------------------------------------------------------------------- /doc/themes/next/crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/crowdin.yml -------------------------------------------------------------------------------- /doc/themes/next/gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/gulpfile.coffee -------------------------------------------------------------------------------- /doc/themes/next/languages/zh-CN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/languages/zh-CN.yml -------------------------------------------------------------------------------- /doc/themes/next/layout/_custom/head.swig: -------------------------------------------------------------------------------- 1 | {# 2 | Custom head. 3 | #} 4 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_custom/header.swig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_custom/sidebar.swig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_layout.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_layout.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_macro/menu/menu-badge.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_macro/menu/menu-badge.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_macro/menu/menu-item.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_macro/menu/menu-item.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_macro/post-collapse.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_macro/post-collapse.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_macro/post.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_macro/post.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_macro/sidebar.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_macro/sidebar.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/comments.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/comments.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/footer.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/footer.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/github-banner.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/github-banner.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/head/external-fonts.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/head/external-fonts.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/head/head-unique.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/head/head-unique.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/head/head.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/head/head.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/header/brand.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/header/brand.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/header/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/header/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/header/menu.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/header/menu.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/header/sub-menu.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/header/sub-menu.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/page/breadcrumb.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/page/breadcrumb.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/page/page-header.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/page/page-header.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/pagination.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/pagination.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/post-edit.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/post-edit.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/post/post-copyright.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/post/post-copyright.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/post/post-related.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/post/post-related.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/post/reward.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/post/reward.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/search/algolia-search.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/search/algolia-search.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/search/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/search/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/search/localsearch.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/search/localsearch.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/search/swiftype.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/search/swiftype.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/share/add-this.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/share/add-this.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/share/baidushare.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/share/baidushare.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/share/likely.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_partials/share/likely.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/commons.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/commons.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/exturl.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/exturl.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/next-boot.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/next-boot.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/noscript.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/noscript.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/pages/post-details.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/pages/post-details.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/schemes/gemini.swig: -------------------------------------------------------------------------------- 1 | {% include 'pisces.swig' %} 2 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/schemes/mist.swig: -------------------------------------------------------------------------------- 1 | {% include 'muse.swig' %} 2 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/schemes/muse.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/schemes/muse.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/schemes/pisces.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/schemes/pisces.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/scroll-cookie.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/scroll-cookie.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/vendors.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_scripts/vendors.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/analytics/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/analytics/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/baidu-push.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/baidu-push.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/bookmark.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/bookmark.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/chatra.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/chatra.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/changyan.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/changyan.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/disqus.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/disqus.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/disqusjs.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/disqusjs.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/gitalk.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/gitalk.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/gitment.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/gitment.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/livere.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/livere.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/comments/valine.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/comments/valine.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/copy-code.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/copy-code.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/math/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/math/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/math/katex.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/math/katex.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/math/mathjax.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/math/mathjax.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/mermaid.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/mermaid.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/needsharebutton.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/needsharebutton.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/pangu.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/pangu.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/pdf.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/pdf.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/quicklink.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/quicklink.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/rating.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/rating.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/schedule.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/schedule.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/search/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/search/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/search/localsearch.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/search/localsearch.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/tidio.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/_third-party/tidio.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/archive.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/archive.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/category.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/category.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/index.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/index.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/page.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/page.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/post.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/post.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/schedule.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/schedule.swig -------------------------------------------------------------------------------- /doc/themes/next/layout/tag.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/layout/tag.swig -------------------------------------------------------------------------------- /doc/themes/next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/package.json -------------------------------------------------------------------------------- /doc/themes/next/scripts/filters/exturl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/filters/exturl.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/helpers/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/helpers/engine.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/helpers/next-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/helpers/next-url.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/merge-configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/merge-configs.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/merge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/merge.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/button.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/center-quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/center-quote.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/exturl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/exturl.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/full-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/full-image.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/group-pictures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/group-pictures.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/include-raw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/include-raw.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/label.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/mermaid.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/note.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/pdf.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/tabs.js -------------------------------------------------------------------------------- /doc/themes/next/scripts/tags/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/scripts/tags/video.js -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/components/buttons.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/comments.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/components/comments.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/post/post-button.styl: -------------------------------------------------------------------------------- 1 | .post-button { 2 | margin-top: 40px; 3 | } 4 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/rainbow.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/components/rainbow.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/tags/pdf.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/components/tags/pdf.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/third-party/han.styl: -------------------------------------------------------------------------------- 1 | i.fa { 2 | font-family: FontAwesome !important; 3 | } 4 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/outline/outline.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/outline/outline.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/scaffolding/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/scaffolding/base.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/scaffolding/helpers.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/scaffolding/helpers.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/scaffolding/mobile.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/scaffolding/mobile.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/scaffolding/tables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_common/scaffolding/tables.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_custom/custom.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_custom/custom.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/Gemini.styl: -------------------------------------------------------------------------------- 1 | @import "Pisces.styl"; 2 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/Mist.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/Muse.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/Pisces.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_mixins/Pisces.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_mixins/base.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/custom.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Gemini/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Gemini/index.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Mist/_base.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Mist/_header.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_logo.styl: -------------------------------------------------------------------------------- 1 | .site-subtitle { display: none; } 2 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Mist/_menu.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_search.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Mist/_search.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Mist/index.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/outline/outline.styl: -------------------------------------------------------------------------------- 1 | .main-inner { margin-top: 80px; } 2 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/_layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Muse/_layout.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/_logo.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Muse/_logo.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/_menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Muse/_menu.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/_search.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Muse/_search.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Muse/index.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/_brand.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Pisces/_brand.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/_layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Pisces/_layout.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/_menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Pisces/_menu.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/_sidebar.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Pisces/_sidebar.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/_sub-menu.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Pisces/_sub-menu.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_schemes/Pisces/index.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/Gemini.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_variables/Gemini.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/Mist.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_variables/Mist.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/Muse.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/Pisces.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_variables/Pisces.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_variables/base.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/custom.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/_variables/custom.styl -------------------------------------------------------------------------------- /doc/themes/next/source/css/main.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/css/main.styl -------------------------------------------------------------------------------- /doc/themes/next/source/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/source/images/algolia_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/algolia_logo.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/apple-touch-icon-HandyOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/apple-touch-icon-HandyOrg.png -------------------------------------------------------------------------------- /doc/themes/next/source/images/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/avatar.gif -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-by-nc-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-by-nc-nd.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-by-nc-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-by-nc-sa.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-by-nc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-by-nc.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-by-nd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-by-nd.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-by-sa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-by-sa.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-by.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/cc-zero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/cc-zero.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/favicon-16x16-HandyOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/favicon-16x16-HandyOrg.png -------------------------------------------------------------------------------- /doc/themes/next/source/images/favicon-32x32-HandyOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/favicon-32x32-HandyOrg.png -------------------------------------------------------------------------------- /doc/themes/next/source/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/loading.gif -------------------------------------------------------------------------------- /doc/themes/next/source/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/logo.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/placeholder.gif -------------------------------------------------------------------------------- /doc/themes/next/source/images/quote-l.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/quote-l.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/quote-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/quote-r.svg -------------------------------------------------------------------------------- /doc/themes/next/source/images/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/images/searchicon.png -------------------------------------------------------------------------------- /doc/themes/next/source/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/affix.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/algolia-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/algolia-search.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/exturl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/exturl.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/js.cookie.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/motion.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/next-boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/next-boot.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/post-details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/post-details.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/schemes/muse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/schemes/muse.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/schemes/pisces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/schemes/pisces.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/scroll-cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/scroll-cookie.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/scrollspy.js -------------------------------------------------------------------------------- /doc/themes/next/source/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/js/utils.js -------------------------------------------------------------------------------- /doc/themes/next/source/lib/jquery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/lib/jquery/index.js -------------------------------------------------------------------------------- /doc/themes/next/source/lib/velocity/velocity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/lib/velocity/velocity.js -------------------------------------------------------------------------------- /doc/themes/next/source/lib/velocity/velocity.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/lib/velocity/velocity.min.js -------------------------------------------------------------------------------- /doc/themes/next/source/lib/velocity/velocity.ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/lib/velocity/velocity.ui.js -------------------------------------------------------------------------------- /doc/themes/next/source/lib/velocity/velocity.ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/source/lib/velocity/velocity.ui.min.js -------------------------------------------------------------------------------- /doc/themes/next/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/test/.jshintrc -------------------------------------------------------------------------------- /doc/themes/next/test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/test/helpers.js -------------------------------------------------------------------------------- /doc/themes/next/test/intern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/doc/themes/next/test/intern.js -------------------------------------------------------------------------------- /extension/visual studio/HandyControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/HandyControl.sln -------------------------------------------------------------------------------- /extension/visual studio/HandyControl/HandyControl.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/HandyControl/HandyControl.csproj -------------------------------------------------------------------------------- /extension/visual studio/HandyControl/HandyControlPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/HandyControl/HandyControlPackage.cs -------------------------------------------------------------------------------- /extension/visual studio/HandyControl/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/HandyControl/License.txt -------------------------------------------------------------------------------- /extension/visual studio/HandyControl/icon_100_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/HandyControl/icon_100_100.png -------------------------------------------------------------------------------- /extension/visual studio/HandyControl/icon_300_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/HandyControl/icon_300_300.png -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/App.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/App.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/DesignTimeResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/DesignTimeResources.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/MainWindow.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/ProjectTemplate.csproj -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/WpfApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/WpfApp.csproj -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/WpfApp.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/WpfApp.vstemplate -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/icon.ico -------------------------------------------------------------------------------- /extension/visual studio/WpfApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfApp/packages.config -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/App.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/App.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/Bootstrapper.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/MainWindow.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/MainWindow.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMPrism/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMPrism/icon.ico -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/App.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/App.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/Bootstrapper.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/RootView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/RootView.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/RootView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/RootView.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/RootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/RootViewModel.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfAppMVVMStylet/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfAppMVVMStylet/icon.ico -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/App.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/App.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/DesignTimeResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/DesignTimeResources.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/MainWindow.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/ProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/ProjectTemplate.csproj -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/WpfCoreApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/WpfCoreApp.csproj -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/WpfCoreApp.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/WpfCoreApp.vstemplate -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreApp/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreApp/icon.ico -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/App.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/App.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/Bootstrapper.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/MainWindow.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/MainWindow.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppPrism/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppPrism/icon.ico -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/App.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/App.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/AssemblyInfo.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/Bootstrapper.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/RootView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/RootView.xaml -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/RootView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/RootView.xaml.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/RootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/RootViewModel.cs -------------------------------------------------------------------------------- /extension/visual studio/WpfCoreAppStylet/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/extension/visual studio/WpfCoreAppStylet/icon.ico -------------------------------------------------------------------------------- /src/.run/HandyControlDemo_Avalonia.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/.run/HandyControlDemo_Avalonia.run.xml -------------------------------------------------------------------------------- /src/.run/HandyControlDemo_Net40.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/.run/HandyControlDemo_Net40.run.xml -------------------------------------------------------------------------------- /src/.run/HandyControlDemo_Net_GE45.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/.run/HandyControlDemo_Net_GE45.run.xml -------------------------------------------------------------------------------- /src/Avalonia/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/.editorconfig -------------------------------------------------------------------------------- /src/Avalonia/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/Directory.Build.props -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/App.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/App.axaml.cs -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/Data/DemoInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/Data/DemoInfo.json -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/Data/MessageToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/Data/MessageToken.cs -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/MainWindow.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/Program.cs -------------------------------------------------------------------------------- /src/Avalonia/HandyControlDemo_Avalonia/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControlDemo_Avalonia/app.manifest -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Data/PanelUvSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Data/PanelUvSize.cs -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Data/ResourceToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Data/ResourceToken.cs -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Themes/Basic/Fonts.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Themes/Basic/Fonts.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Themes/Basic/Paths.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Themes/Basic/Paths.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Themes/Basic/Sizes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Themes/Basic/Sizes.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Themes/Styles/Menu.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Themes/Styles/Menu.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Themes/Theme.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Themes/Theme.axaml -------------------------------------------------------------------------------- /src/Avalonia/HandyControl_Avalonia/Themes/Theme.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Avalonia/HandyControl_Avalonia/Themes/Theme.axaml.cs -------------------------------------------------------------------------------- /src/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Directory.Build.Props -------------------------------------------------------------------------------- /src/HandyControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/HandyControl.sln -------------------------------------------------------------------------------- /src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Net_40/HandyControl_Net_40/HandyControl_Net_40.csproj -------------------------------------------------------------------------------- /src/Net_40/HandyControl_Net_40/Themes/Styles/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Net_40/HandyControl_Net_40/Themes/Styles/DataGrid.xaml -------------------------------------------------------------------------------- /src/Net_40/HandyControl_Net_40/Themes/Styles/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Net_40/HandyControl_Net_40/Themes/Styles/ListView.xaml -------------------------------------------------------------------------------- /src/Net_40/HandyControl_Net_40/Themes/Styles/Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Net_40/HandyControl_Net_40/Themes/Styles/Window.xaml -------------------------------------------------------------------------------- /src/Net_40/HandyControl_Net_40/Themes/Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Net_40/HandyControl_Net_40/Themes/Theme.xaml -------------------------------------------------------------------------------- /src/Net_GE45/HandyControl_Net_GE45/Themes/Theme.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Net_GE45/HandyControl_Net_GE45/Themes/Theme.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Code/DemoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Code/DemoHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/App.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/App.xaml.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/AppConfig.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/DemoInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/DemoInfo.json -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Enum/DemoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/Enum/DemoType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/GlobalData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/GlobalData.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/MessageToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/MessageToken.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/MessageToken.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/MessageToken.tt -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Model/CardModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/Model/CardModel.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/SideMenuConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Data/SideMenuConfig.json -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/MainWindow.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Properties/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Properties/App.config -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/3.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/4.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/5.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/Cover.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Dance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/Dance.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/1.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/10.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/2.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/3.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/4.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/5.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/6.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/7.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/8.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/9.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/Slack.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/b1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/b2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/cloud.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Img/icon.ico -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Resources/Registry.txt -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Window/AboutWindow.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/BlurWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Window/BlurWindow.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/CommonWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Window/CommonWindow.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/GlowWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/Window/GlowWindow.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControlDemo_Shared/app.manifest -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Base/ISelectable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Base/ISelectable.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Base/ISingleOpen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Base/ISingleOpen.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Dialog/Dialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Dialog/Dialog.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Drawer/Drawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Drawer/Drawer.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Growl/Growl.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Image/GifImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Image/GifImage.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Image/ImageBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Image/ImageBlock.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Input/ComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Input/ComboBox.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Input/DatePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Input/DatePicker.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Input/PinBox.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Input/SearchBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Input/SearchBar.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Input/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Input/TextBox.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Input/TimePicker.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Badge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Badge.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Card.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/ChatBubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/ChatBubble.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Divider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Divider.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Empty.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/GotoTop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/GotoTop.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Gravatar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Gravatar.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Magnifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Magnifier.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/NotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/NotifyIcon.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Pagination.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Poptip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Poptip.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Shield.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Shield.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Sprite.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Other/Watermark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Other/Watermark.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Panel/AxleCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Panel/AxleCanvas.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Panel/ClipGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Panel/ClipGrid.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Panel/FlexPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Panel/FlexPanel.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Panel/Grid/Col.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Panel/Grid/Col.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Panel/Grid/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Panel/Grid/Row.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Rate/Rate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Rate/Rate.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Rate/RateItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Rate/RateItem.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Ribbon/Ribbon.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Ribbon/RibbonTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Ribbon/RibbonTab.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/StepBar/StepBar.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Tag/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Tag/Tag.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Tag/TagContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Tag/TagContainer.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Text/OutlineText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Text/OutlineText.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Text/SimpleText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Text/SimpleText.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Time/Clock/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Time/Clock/Clock.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Window/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Controls/Window/Window.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/DisposableObject.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/BadgeStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/BadgeStatus.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ChatMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ChatMessageType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ChatRoleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ChatRoleType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ColLayoutStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ColLayoutStatus.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/DrawerShowMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/DrawerShowMode.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ExpandMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ExpandMode.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/GrowlShowMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/GrowlShowMode.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/HatchStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/HatchStyle.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/HitMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/HitMode.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ImageCodecFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ImageCodecFlags.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/InfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/InfoType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/IpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/IpType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/LinearLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/LinearLayout.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ResultType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ResultType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ShowAnimation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/ShowAnimation.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/StepStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/StepStatus.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/StrokePosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/StrokePosition.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/TextType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/TextType.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/TipPlacement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/TipPlacement.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/TransitionMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/TransitionMode.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/VisualWrapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Enum/VisualWrapping.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/EnumItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/EnumItem.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Flex/FlexDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Flex/FlexDirection.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Flex/FlexWrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Flex/FlexWrap.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Gif/GPStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Gif/GPStream.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Gif/GifImageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Gif/GifImageInfo.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Gif/GifPropertyItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Gif/GifPropertyItem.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/GlowWindow/GlowEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/GlowWindow/GlowEdge.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/HandyControlConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/HandyControlConfig.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/HwndWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/HwndWrapper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Info/GrowlInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Info/GrowlInfo.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Info/ImageCodecInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Info/ImageCodecInfo.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Info/MessageBoxInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Info/MessageBoxInfo.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/PanelUvSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/PanelUvSize.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Range/ColorRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Range/ColorRange.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Range/DateTimeRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Range/DateTimeRange.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Range/DoubleRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Range/DoubleRange.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Range/IValueRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/Range/IValueRange.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/ResourceToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/ResourceToken.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/ValueBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Data/ValueBoxes.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/HandyControl_Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/HandyControl_Shared.shproj -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Input/SimpleMouseBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Input/SimpleMouseBinding.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Media/Effects/EffectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Media/Effects/EffectBase.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Properties/Langs/Lang.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Properties/Langs/Lang.resx -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Resources/dropper.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Resources/dropper.cur -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Behaviors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Behaviors.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Brushes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Brushes.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Converters.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Effects.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Effects.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Fonts.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Fonts.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Geometries.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Geometries.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Paths.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Paths.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Basic/Sizes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Basic/Sizes.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Lang.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Lang.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Badge.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Badge.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Border.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Border.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Button.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Calendar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Calendar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Card.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Card.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Carousel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Carousel.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/CheckBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/CheckBox.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Clock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Clock.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Col.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Col.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/ComboBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/ComboBox.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/CoverFlow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/CoverFlow.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/CoverView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/CoverView.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/DataGrid.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Dialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Dialog.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Divider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Divider.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Drawer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Drawer.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Empty.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Empty.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Expander.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Expander.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/FlipClock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/FlipClock.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Frame.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Frame.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/GotoTop.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/GotoTop.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Gravatar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Gravatar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/GroupBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/GroupBox.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Growl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Growl.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Label.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/ListBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/ListBox.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/ListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/ListView.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Loading.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Loading.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Magnifier.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Magnifier.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Menu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Menu.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/PinBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/PinBox.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Poptip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Poptip.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Rate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Rate.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Rectangle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Rectangle.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Ribbon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Ribbon.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/SearchBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/SearchBar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Separator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Separator.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Shield.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Shield.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/SideMenu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/SideMenu.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Slider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Slider.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Sprite.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Sprite.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/StatusBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/StatusBar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/StepBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/StepBar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Tag.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Tag.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/TextBlock.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/TextBlock.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/TextBox.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/TimeBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/TimeBar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/ToolBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/ToolBar.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/ToolTip.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/ToolTip.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Transfer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Transfer.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/TreeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/TreeView.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Watermark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Watermark.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Themes/Styles/Window.xaml -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Extension/ColLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Extension/ColLayout.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/GifImageAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/GifImageAnimator.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/GlobalShortcut.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/GlobalShortcut.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/ConfigHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/ConfigHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/DpiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/DpiHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/IconHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/IconHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/ScreenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/ScreenHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/TextHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/VisualHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/VisualHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Helper/WindowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Helper/WindowHelper.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Hook/ClipboardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Hook/ClipboardHook.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Hook/KeyboardHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Hook/KeyboardHook.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Hook/MouseHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Hook/MouseHook.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Hook/SystemMenuHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/Hook/SystemMenuHook.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/RegexJudgment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/RegexJudgment.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/Tools/RegexPatterns.cs -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/HandyControl_Shared/key.snk -------------------------------------------------------------------------------- /src/Shared/Microsoft.Expression.Drawing/Media/IShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Expression.Drawing/Media/IShape.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Expression.Drawing/Media/UnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Expression.Drawing/Media/UnitType.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Expression.Drawing/Shapes/Arc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Expression.Drawing/Shapes/Arc.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Expression.Interactions/TagType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Expression.Interactions/TagType.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/JumpItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/JumpItem.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/JumpList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/JumpList.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/JumpPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/JumpPath.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/JumpTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/JumpTask.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/AC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/AC.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Assert.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/BI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/BI.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/BITMAPINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/BITMAPINFO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/CLSID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/CLSID.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/CREATESTRUCT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/CREATESTRUCT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/CS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/CS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DOGIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DOGIF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DWMFLIP3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DWMFLIP3D.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DWMNCRP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DWMNCRP.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DWMWA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DWMWA.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DWM_SIT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DWM_SIT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DeviceCap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DeviceCap.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/DpiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/DpiHelper.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/ErrorModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/ErrorModes.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/FO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/FO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/FOF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/FOF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Facility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Facility.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/GCLP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/GCLP.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/GPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/GPS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/GWL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/GWL.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/HCF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/HCF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/HIGHCONTRAST.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/HIGHCONTRAST.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/HRESULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/HRESULT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/HT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/HT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IEnumIDList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IEnumIDList.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IEnumObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IEnumObjects.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IID.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/INPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/INPUT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/INPUT_TYPE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/INPUT_TYPE.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IObjectArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IObjectArray.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IShellFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IShellFolder.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IShellItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IShellItem.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IShellItem2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IShellItem2.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/IShellLinkW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/IShellLinkW.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/ITaskbarList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/ITaskbarList.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/KDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/KDC.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/LOGFONT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/LOGFONT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MARGINS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MARGINS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MINMAXINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MINMAXINFO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MONITORINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MONITORINFO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MOUSEEVENTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MOUSEEVENTF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MOUSEINPUT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MOUSEINPUT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MSGFLT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MSGFLT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/MSGFLTINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/MSGFLTINFO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/NIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/NIF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/NIIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/NIIF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/NIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/NIM.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/OLECMDF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/OLECMDF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/OLECMDID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/OLECMDID.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/PKEY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/PKEY.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/POINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/POINT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/PROPVARIANT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/PROPVARIANT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/READYSTATE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/READYSTATE.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/RECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/RECT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/RGBQUAD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/RGBQUAD.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/RGN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/RGN.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/RefPOINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/RefPOINT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/RefRECT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/RefRECT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SC.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SFGAO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SFGAO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SHARD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SHARD.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SHCONTF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SHCONTF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SHGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SHGDN.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SICHINT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SICHINT.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SIGDN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SIGDN.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SIZE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SIZE.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SLGP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SLGP.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SM.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SPI.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SPIF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SPIF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/STATE_SYSTEM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/STATE_SYSTEM.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/STPF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/STPF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/STR_GPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/STR_GPS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SW.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SWP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SWP.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SafeDC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SafeDC.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/SafeHBITMAP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/SafeHBITMAP.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/StartupInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/StartupInput.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Status.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/StockObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/StockObject.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/TBPF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/TBPF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/THB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/THB.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/THBF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/THBF.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/THUMBBUTTON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/THUMBBUTTON.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/TITLEBARINFO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/TITLEBARINFO.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/ULW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/ULW.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Utility.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Verify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Verify.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WINDOWPOS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WINDOWPOS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WM.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WNDCLASSEX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WNDCLASSEX.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WS_EX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WS_EX.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WTA_OPTIONS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WTA_OPTIONS.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WTNCA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WTNCA.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WVR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WVR.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Win32Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Win32Error.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/Win32Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/Win32Value.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WndProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WndProc.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/Standard/WndProcHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/Standard/WndProcHook.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/SystemCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/SystemCommands.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/SystemParameters2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/SystemParameters2.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/TaskbarItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/TaskbarItemInfo.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/ThumbButtonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/ThumbButtonInfo.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/WindowChrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/WindowChrome.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.Windows.Shell/WindowChromeWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/Microsoft.Windows.Shell/WindowChromeWorker.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/Behavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/Behavior.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/Behavior`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/Behavior`1.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/EventTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/EventTrigger.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/EventTriggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/EventTriggerBase.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/IAttachedObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/IAttachedObject.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/Interaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/Interaction.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/NameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/NameResolver.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/TriggerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/TriggerAction.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/TriggerAction`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/TriggerAction`1.cs -------------------------------------------------------------------------------- /src/Shared/System.Windows.Interactivity/TriggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghost1372/HandyControls/HEAD/src/Shared/System.Windows.Interactivity/TriggerBase.cs --------------------------------------------------------------------------------