├── doc ├── themes │ └── next │ │ ├── source │ │ ├── fonts │ │ │ └── .gitkeep │ │ ├── css │ │ │ ├── _mixins │ │ │ │ ├── Mist.styl │ │ │ │ ├── Muse.styl │ │ │ │ ├── custom.styl │ │ │ │ └── Gemini.styl │ │ │ ├── _variables │ │ │ │ ├── Muse.styl │ │ │ │ └── custom.styl │ │ │ ├── _schemes │ │ │ │ ├── Mist │ │ │ │ │ ├── _logo.styl │ │ │ │ │ ├── outline │ │ │ │ │ │ └── outline.styl │ │ │ │ │ ├── sidebar │ │ │ │ │ │ └── sidebar-blogroll.styl │ │ │ │ │ ├── _search.styl │ │ │ │ │ └── _base.styl │ │ │ │ ├── Muse │ │ │ │ │ ├── sidebar │ │ │ │ │ │ └── sidebar-blogroll.styl │ │ │ │ │ ├── _search.styl │ │ │ │ │ ├── index.styl │ │ │ │ │ └── _layout.styl │ │ │ │ └── Pisces │ │ │ │ │ └── index.styl │ │ │ └── _common │ │ │ │ ├── components │ │ │ │ ├── comments.styl │ │ │ │ ├── post │ │ │ │ │ ├── post-button.styl │ │ │ │ │ ├── post-tags.styl │ │ │ │ │ ├── post-rtl.styl │ │ │ │ │ └── post-type.styl │ │ │ │ ├── third-party │ │ │ │ │ ├── han.styl │ │ │ │ │ ├── math.styl │ │ │ │ │ └── gitalk.styl │ │ │ │ ├── header │ │ │ │ │ ├── headerband.styl │ │ │ │ │ └── header.styl │ │ │ │ ├── pages │ │ │ │ │ ├── post-detail.styl │ │ │ │ │ ├── pages.styl │ │ │ │ │ └── tag-cloud.styl │ │ │ │ ├── tags │ │ │ │ │ ├── pdf.styl │ │ │ │ │ ├── full-image.styl │ │ │ │ │ └── tags.styl │ │ │ │ └── highlight │ │ │ │ │ └── diff.styl │ │ │ │ └── scaffolding │ │ │ │ └── scaffolding.styl │ │ └── images │ │ │ ├── avatar.gif │ │ │ ├── loading.gif │ │ │ ├── placeholder.gif │ │ │ ├── searchicon.png │ │ │ ├── favicon-16x16-HandyOrg.png │ │ │ ├── favicon-32x32-HandyOrg.png │ │ │ └── apple-touch-icon-HandyOrg.png │ │ ├── layout │ │ ├── _custom │ │ │ ├── header.swig │ │ │ ├── sidebar.swig │ │ │ └── head.swig │ │ ├── _scripts │ │ │ ├── schemes │ │ │ │ ├── gemini.swig │ │ │ │ ├── mist.swig │ │ │ │ ├── muse.swig │ │ │ │ └── pisces.swig │ │ │ ├── exturl.swig │ │ │ ├── pages │ │ │ │ └── post-details.swig │ │ │ ├── next-boot.swig │ │ │ ├── scroll-cookie.swig │ │ │ └── commons.swig │ │ ├── _third-party │ │ │ ├── search │ │ │ │ └── index.swig │ │ │ ├── tidio.swig │ │ │ └── analytics │ │ │ │ ├── analytics-with-widget.swig │ │ │ │ ├── cnzz-analytics.swig │ │ │ │ └── index.swig │ │ └── _partials │ │ │ ├── share │ │ │ └── add-this.swig │ │ │ ├── post-edit.swig │ │ │ └── search │ │ │ └── index.swig │ │ ├── .bowerrc │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── .github │ │ ├── topissuebot.yml │ │ └── weekly-digest.yml │ │ ├── .editorconfig │ │ └── crowdin.yml ├── scaffolds │ ├── draft.md │ ├── page.md │ └── post.md ├── source │ ├── handycontrol │ │ ├── data │ │ │ └── index.md │ │ ├── tools │ │ │ └── index.md │ │ ├── extend_controls │ │ │ ├── index.md │ │ │ ├── badge │ │ │ │ └── index.md │ │ │ ├── clock │ │ │ │ └── index.md │ │ │ ├── rate │ │ │ │ └── index.md │ │ │ ├── tag │ │ │ │ └── index.md │ │ │ ├── blurWindow │ │ │ │ └── index.md │ │ │ ├── carousel │ │ │ │ └── index.md │ │ │ ├── chatBubble │ │ │ │ └── index.md │ │ │ ├── comboBox │ │ │ │ └── index.md │ │ │ ├── coverFlow │ │ │ │ └── index.md │ │ │ ├── coverView │ │ │ │ └── index.md │ │ │ ├── datePicker │ │ │ │ └── index.md │ │ │ ├── dialog │ │ │ │ └── index.md │ │ │ ├── flipClock │ │ │ │ └── index.md │ │ │ ├── gifImage │ │ │ │ └── index.md │ │ │ ├── gotoTop │ │ │ │ └── index.md │ │ │ ├── gravatar │ │ │ │ └── index.md │ │ │ ├── loading │ │ │ │ └── index.md │ │ │ ├── messageBox │ │ │ │ └── index.md │ │ │ ├── notifyIcon │ │ │ │ └── index.md │ │ │ ├── pagination │ │ │ │ └── index.md │ │ │ ├── radioGroup │ │ │ │ └── index.md │ │ │ ├── searchBar │ │ │ │ └── index.md │ │ │ ├── shield │ │ │ │ └── index.md │ │ │ ├── stepBar │ │ │ │ └── index.md │ │ │ ├── tabControl │ │ │ │ └── index.md │ │ │ ├── textBox │ │ │ │ └── index.md │ │ │ ├── timeBar │ │ │ │ └── index.md │ │ │ ├── timePicker │ │ │ │ └── index.md │ │ │ ├── transfer │ │ │ │ └── index.md │ │ │ ├── window │ │ │ │ └── index.md │ │ │ ├── animationPath │ │ │ │ └── index.md │ │ │ ├── circlePanel │ │ │ │ └── index.md │ │ │ ├── colorPicker │ │ │ │ └── index.md │ │ │ ├── compareSlider │ │ │ │ └── index.md │ │ │ ├── dateTimePicker │ │ │ │ └── index.md │ │ │ ├── imageBrowser │ │ │ │ └── index.md │ │ │ ├── imageViewer │ │ │ │ └── index.md │ │ │ ├── numericUpDown │ │ │ │ └── index.md │ │ │ ├── outlineText │ │ │ │ └── index.md │ │ │ ├── passwordBox │ │ │ │ └── index.md │ │ │ ├── popupWindow │ │ │ │ └── index.md │ │ │ ├── previewSlider │ │ │ │ └── index.md │ │ │ ├── progressButton │ │ │ │ └── index.md │ │ │ ├── scrollViewer │ │ │ │ └── index.md │ │ │ ├── simplePanel │ │ │ │ └── index.md │ │ │ ├── waterfallPanel │ │ │ │ └── index.md │ │ │ ├── waveProgressBar │ │ │ │ └── index.md │ │ │ ├── calendarWithClock │ │ │ │ └── index.md │ │ │ ├── circleProgressBar │ │ │ │ └── index.md │ │ │ ├── simpleItemsControl │ │ │ │ └── index.md │ │ │ └── transitioningContentControl │ │ │ │ └── index.md │ │ ├── attach │ │ │ ├── panelElement │ │ │ │ └── index.md │ │ │ ├── tipElement │ │ │ │ └── index.md │ │ │ ├── passwordBoxAttach │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── edgeElement │ │ │ │ └── index.md │ │ │ └── iconSwitchElement │ │ │ │ └── index.md │ │ └── native_controls │ │ │ ├── image │ │ │ └── index.md │ │ │ ├── label │ │ │ └── index.md │ │ │ ├── menu │ │ │ └── index.md │ │ │ ├── listBox │ │ │ └── index.md │ │ │ ├── listView │ │ │ └── index.md │ │ │ ├── slider │ │ │ └── index.md │ │ │ ├── tabControl │ │ │ └── index.md │ │ │ ├── textBlock │ │ │ └── index.md │ │ │ ├── textBox │ │ │ └── index.md │ │ │ ├── toolBar │ │ │ └── index.md │ │ │ ├── toolTip │ │ │ └── index.md │ │ │ ├── treeView │ │ │ └── index.md │ │ │ ├── window │ │ │ └── index.md │ │ │ ├── passwordBox │ │ │ └── index.md │ │ │ ├── progressBar │ │ │ └── index.md │ │ │ ├── radioButton │ │ │ └── index.md │ │ │ ├── richTextBox │ │ │ └── index.md │ │ │ ├── scrollViewer │ │ │ └── index.md │ │ │ ├── toggleButton │ │ │ └── index.md │ │ │ └── contentControl │ │ │ └── index.md │ └── handykeras │ │ └── index.md └── .gitignore ├── src ├── Net_35 │ ├── HandyControl_Net_35 │ │ ├── Properties │ │ │ └── Langs │ │ │ │ └── Lang.en.Designer.cs │ │ ├── Shell │ │ │ ├── Standard │ │ │ │ ├── BI.cs │ │ │ │ ├── GCLP.cs │ │ │ │ ├── INPUT_TYPE.cs │ │ │ │ ├── DWM_SIT.cs │ │ │ │ ├── KDC.cs │ │ │ │ ├── AC.cs │ │ │ │ ├── MOUSEEVENTF.cs │ │ │ │ ├── MSGFLT.cs │ │ │ │ ├── APPDOCLISTTYPE.cs │ │ │ │ ├── ULW.cs │ │ │ │ ├── DWMNCRP.cs │ │ │ │ ├── WINDOWTHEMEATTRIBUTETYPE.cs │ │ │ │ ├── DWMFLIP3D.cs │ │ │ │ ├── FO.cs │ │ │ │ ├── SIATTRIBFLAGS.cs │ │ │ │ ├── WndProc.cs │ │ │ │ ├── SLGP.cs │ │ │ │ ├── RGN.cs │ │ │ │ ├── OLECMDEXECOPT.cs │ │ │ │ ├── THB.cs │ │ │ │ ├── CombineRgnResult.cs │ │ │ │ ├── DeviceCap.cs │ │ │ │ ├── WndProcHook.cs │ │ │ │ ├── READYSTATE.cs │ │ │ │ ├── MSGFLTINFO.cs │ │ │ │ ├── NIM.cs │ │ │ │ ├── SPIF.cs │ │ │ │ ├── TBPF.cs │ │ │ │ ├── DOGIF.cs │ │ │ │ ├── POINT.cs │ │ │ │ ├── SIZE.cs │ │ │ │ ├── MF.cs │ │ │ │ ├── MessageHandler.cs │ │ │ │ └── SICHINT.cs │ │ │ ├── JumpPath.cs │ │ │ ├── JumpItemRejectionReason.cs │ │ │ └── TaskbarItemProgressState.cs │ │ ├── Expression │ │ │ ├── Media │ │ │ │ ├── UnitType.cs │ │ │ │ └── DrawingPropertyMetadataOptions.cs │ │ │ └── Drawing │ │ │ │ └── MarchStopReason.cs │ │ ├── Interactivity │ │ │ ├── TagType.cs │ │ │ ├── FluidMoveScope.cs │ │ │ └── PreviewInvokeEventArgs.cs │ │ ├── Data │ │ │ ├── Enum │ │ │ │ ├── TipPlacement.cs │ │ │ │ ├── SkinType.cs │ │ │ │ ├── TitleAlignment.cs │ │ │ │ └── InfoType.cs │ │ │ └── Gif │ │ │ │ └── GifPropertyItem.cs │ │ ├── Controls │ │ │ ├── Base │ │ │ │ ├── ISingleOpen.cs │ │ │ │ └── ISelectable.cs │ │ │ ├── CoverView │ │ │ │ └── CoverViewItem.cs │ │ │ └── Time │ │ │ │ └── Clock │ │ │ │ └── ClockRadioButton.cs │ │ └── Themes │ │ │ ├── SkinDark.xaml │ │ │ ├── SkinDefault.xaml │ │ │ └── SkinViolet.xaml │ ├── HandyControlDemo_Net_35 │ │ ├── Properties │ │ │ └── Langs │ │ │ │ └── Lang.en.Designer.cs │ │ ├── Resources │ │ │ ├── Img │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── b1.jpg │ │ │ │ ├── b2.jpg │ │ │ │ ├── icon.ico │ │ │ │ ├── Album │ │ │ │ │ ├── 1.jpg │ │ │ │ │ ├── 2.jpg │ │ │ │ │ ├── 3.jpg │ │ │ │ │ ├── 4.jpg │ │ │ │ │ ├── 5.jpg │ │ │ │ │ ├── 6.jpg │ │ │ │ │ ├── 7.jpg │ │ │ │ │ ├── 8.jpg │ │ │ │ │ ├── 9.jpg │ │ │ │ │ └── 10.jpg │ │ │ │ ├── Flag │ │ │ │ │ ├── cn.png │ │ │ │ │ └── en.png │ │ │ │ ├── car_chase.gif │ │ │ │ ├── icon-white.png │ │ │ │ ├── qq-group.jpg │ │ │ │ ├── Avatar │ │ │ │ │ ├── avatar1.png │ │ │ │ │ ├── avatar2.png │ │ │ │ │ ├── avatar3.png │ │ │ │ │ ├── avatar4.png │ │ │ │ │ ├── avatar5.png │ │ │ │ │ └── avatar6.png │ │ │ │ └── LeftMainContent │ │ │ │ │ ├── Star.png │ │ │ │ │ ├── Brush_16x.png │ │ │ │ │ ├── Flow_16x.png │ │ │ │ │ ├── Panel_16x.png │ │ │ │ │ ├── Path_16x.png │ │ │ │ │ ├── Tag_16x.png │ │ │ │ │ ├── ListBox_16x.png │ │ │ │ │ ├── Message_16x.png │ │ │ │ │ ├── Search_16x.png │ │ │ │ │ ├── Shield_16x.png │ │ │ │ │ ├── Slider_16x.png │ │ │ │ │ ├── TabPage_16x.png │ │ │ │ │ ├── TextBox_16x.png │ │ │ │ │ ├── Toggle_16x.png │ │ │ │ │ ├── ToolBar_16x.png │ │ │ │ │ ├── Animation_16x.png │ │ │ │ │ ├── Calendar_16x.png │ │ │ │ │ ├── Carousel_16x.png │ │ │ │ │ ├── CheckBox_16x.png │ │ │ │ │ ├── ColorWheel_16x.png │ │ │ │ │ ├── ComboBox_16x.png │ │ │ │ │ ├── DataGrid_16x.png │ │ │ │ │ ├── DatePicker_16x.png │ │ │ │ │ ├── Expander_16x.png │ │ │ │ │ ├── GroupBox_16x.png │ │ │ │ │ ├── HoverMenu_16x.png │ │ │ │ │ ├── ListView_16x.png │ │ │ │ │ ├── Paginator_16x.png │ │ │ │ │ ├── ScrollBox_16x.png │ │ │ │ │ ├── TextBlock_16x.png │ │ │ │ │ ├── TimePicker_16x.png │ │ │ │ │ ├── Time_color_16x.png │ │ │ │ │ ├── Timeline_16x.png │ │ │ │ │ ├── TreeView_16x.png │ │ │ │ │ ├── ButtonClick_16x.png │ │ │ │ │ ├── ColorPalette_16x.png │ │ │ │ │ ├── ContextMenu_16x.png │ │ │ │ │ ├── FlipVertical_16x.png │ │ │ │ │ ├── ImageBrowser_16x.png │ │ │ │ │ ├── Loading_Blue_16x.png │ │ │ │ │ ├── PasswordBox_16x.png │ │ │ │ │ ├── ProgressBar_16x.png │ │ │ │ │ ├── RadioButton_16x.png │ │ │ │ │ ├── RichTextBox_16x.png │ │ │ │ │ ├── ShapeArcRing_16x.png │ │ │ │ │ ├── WindowsForm_16x.png │ │ │ │ │ ├── BorderElement_16x.png │ │ │ │ │ ├── DetailDataView_16x.png │ │ │ │ │ ├── LinearCarousel_16x.png │ │ │ │ │ ├── NumericListBox_16x.png │ │ │ │ │ ├── SplitterControl_16x.png │ │ │ │ │ └── SortAscending_grey_16x.png │ │ │ └── Themes │ │ │ │ └── Style.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Data │ │ │ ├── Model │ │ │ │ └── StepBarDemoModel.cs │ │ │ └── Enum │ │ │ │ └── DemoType.cs │ │ ├── Window │ │ │ ├── BlurWindow.xaml.cs │ │ │ ├── CommonWindow.xaml.cs │ │ │ └── CustomNonClientAreaWindow.xaml.cs │ │ └── UserControl │ │ │ ├── Main │ │ │ ├── QQGroupView.xaml.cs │ │ │ └── ContributorsView.xaml.cs │ │ │ ├── Controls │ │ │ ├── RateDemoCtl.xaml.cs │ │ │ ├── ShieldDemoCtl.xaml.cs │ │ │ ├── TextBoxDemoCtl.xaml.cs │ │ │ ├── ComboBoxDemoCtl.xaml.cs │ │ │ ├── CoverViewDemoCtl.xaml.cs │ │ │ ├── FlipClockDemoCtl.xaml.cs │ │ │ ├── LoadingDemoCtl.xaml.cs │ │ │ ├── SearchBarDemoCtl.xaml.cs │ │ │ ├── TimeBarDemoCtl.xaml.cs │ │ │ ├── CarouselDemoCtl.xaml.cs │ │ │ ├── CirclePanelDemoCtl.xaml.cs │ │ │ ├── OutlineTextDemoCtl.xaml.cs │ │ │ ├── PasswordBoxDemoCtl.xaml.cs │ │ │ ├── PaginationDemoCtl.xaml.cs │ │ │ ├── TabControlDemoCtl.xaml.cs │ │ │ ├── ColorPickerDemoCtl.xaml.cs │ │ │ ├── ScrollViewerDemoCtl.xaml.cs │ │ │ ├── WaterfallPanelDemoCtl.xaml.cs │ │ │ ├── AnimationPathDemoCtl.xaml.cs │ │ │ ├── CompareSliderDemoCtl.xaml.cs │ │ │ ├── PreviewSliderDemoCtl.xaml.cs │ │ │ └── CircleProgressBarDemoCtl.xaml.cs │ │ │ └── Styles │ │ │ ├── MenuDemoCtl.xaml.cs │ │ │ ├── BorderDemoCtl.xaml.cs │ │ │ ├── BrushDemoCtl.xaml.cs │ │ │ ├── GroupBoxDemoCtl.xaml.cs │ │ │ ├── ListViewDemoCtl.xaml.cs │ │ │ ├── SliderDemoCtl.xaml.cs │ │ │ ├── ToolBarDemoCtl.xaml.cs │ │ │ ├── CheckBoxDemoCtl.xaml.cs │ │ │ ├── ListBoxDemoCtl.xaml.cs │ │ │ ├── TreeViewDemoCtl.xaml.cs │ │ │ ├── NaiveComboBoxDemoCtl.xaml.cs │ │ │ ├── ProgressBarDemoCtl.xaml.cs │ │ │ ├── RadioButtonDemoCtl.xaml.cs │ │ │ ├── NaiveTextBoxDemoCtl.xaml.cs │ │ │ ├── NaivePasswordBoxDemoCtl.xaml.cs │ │ │ ├── NaiveTabControlDemoCtl.xaml.cs │ │ │ └── NaiveScrollViewerDemoCtl.xaml.cs │ └── bug list.txt └── Shared │ ├── HandyControl_Shared │ ├── Resources │ │ ├── dropper.cur │ │ └── Effects │ │ │ ├── GrayScaleEffect.ps │ │ │ ├── ColorComplementEffect.ps │ │ │ └── ColorComplementEffect.fx │ ├── Data │ │ ├── Enum │ │ │ ├── ChatRoleType.cs │ │ │ ├── SideMenuItemRole.cs │ │ │ ├── BadgeStatus.cs │ │ │ ├── SkinType.cs │ │ │ ├── DrawerShowMode.cs │ │ │ ├── HitMode.cs │ │ │ ├── ChatMessageType.cs │ │ │ ├── ShowAnimation.cs │ │ │ ├── TitleAlignment.cs │ │ │ ├── InfoType.cs │ │ │ └── ColLayoutStatus.cs │ │ └── HandyControlConfig.cs │ ├── Expression │ │ ├── Media │ │ │ ├── UnitType.cs │ │ │ └── DrawingPropertyMetadataOptions.cs │ │ └── Drawing │ │ │ └── MarchStopReason.cs │ ├── Interactivity │ │ ├── TagType.cs │ │ ├── FluidMoveScope.cs │ │ └── PreviewInvokeEventArgs.cs │ ├── Controls │ │ ├── Base │ │ │ ├── IGravatarGenerator.cs │ │ │ ├── ISingleOpen.cs │ │ │ └── ISelectable.cs │ │ ├── Cover │ │ │ └── CoverView │ │ │ │ └── CoverViewItem.cs │ │ └── Time │ │ │ └── Clock │ │ │ └── ClockRadioButton.cs │ ├── Tools │ │ └── Pool │ │ │ └── IPool!1.cs │ └── Themes │ │ ├── Styles │ │ ├── GridSplitter.xaml │ │ └── ContentControl.xaml │ │ ├── SkinDark.xaml │ │ ├── SkinDefault.xaml │ │ └── SkinViolet.xaml │ └── HandyControlDemo_Shared │ ├── Resources │ ├── Img │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── b1.jpg │ │ ├── b2.jpg │ │ ├── Cover.png │ │ ├── Dance.png │ │ ├── QQ │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 2.gif │ │ │ ├── 3.gif │ │ │ ├── 4.gif │ │ │ ├── 5.gif │ │ │ ├── 6.gif │ │ │ ├── 7.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ │ ├── icon.ico │ │ ├── Album │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ └── 10.jpg │ │ ├── Flag │ │ │ ├── cn.png │ │ │ ├── en.png │ │ │ ├── fa.png │ │ │ └── fr.png │ │ ├── car_chase.gif │ │ ├── icon-white.ico │ │ ├── qq_group_1.jpg │ │ ├── qq_group_2.jpg │ │ ├── Avatar │ │ │ ├── avatar1.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar4.png │ │ │ ├── avatar5.png │ │ │ └── avatar6.png │ │ ├── Chat │ │ │ ├── chat_back1.jpg │ │ │ └── chat_back2.jpg │ │ ├── DevOps │ │ │ ├── DevOps-Boards.png │ │ │ ├── DevOps-Repos.png │ │ │ ├── DevOps-Overview.png │ │ │ ├── DevOps-Pipelines.png │ │ │ └── DevOps-TestPlans.png │ │ ├── LeftMainContent │ │ │ ├── Star.png │ │ │ ├── Brush_16x.png │ │ │ ├── Flow_16x.png │ │ │ ├── Label_16x.png │ │ │ ├── Panel_16x.png │ │ │ ├── Path_16x.png │ │ │ ├── Tag_16x.png │ │ │ ├── User_16x.png │ │ │ ├── thumbs_up.png │ │ │ ├── Dialog_16x.png │ │ │ ├── Dynamic_16x.png │ │ │ ├── Effects_16x.png │ │ │ ├── GoToTop_16x.png │ │ │ ├── ListBox_16x.png │ │ │ ├── Message_16x.png │ │ │ ├── Search_16x.png │ │ │ ├── Shield_16x.png │ │ │ ├── Slider_16x.png │ │ │ ├── TabPage_16x.png │ │ │ ├── TextBox_16x.png │ │ │ ├── Toggle_16x.png │ │ │ ├── ToolBar_16x.png │ │ │ ├── Animation_16x.png │ │ │ ├── Bubble_16xLG.png │ │ │ ├── Calendar_16x.png │ │ │ ├── Carousel_16x.png │ │ │ ├── CheckBox_16x.png │ │ │ ├── ColorWheel_16x.png │ │ │ ├── ComboBox_16x.png │ │ │ ├── DataGrid_16x.png │ │ │ ├── DatePicker_16x.png │ │ │ ├── DotLarge_16x.png │ │ │ ├── Expander_16x.png │ │ │ ├── GridPane_16x.png │ │ │ ├── GroupBox_16x.png │ │ │ ├── HandyControl.png │ │ │ ├── HoverMenu_16x.png │ │ │ ├── ImageStack_16x.png │ │ │ ├── ListView_16x.png │ │ │ ├── Paginator_16x.png │ │ │ ├── Procedure_16x.png │ │ │ ├── ScrollBox_16x.png │ │ │ ├── TextBlock_16x.png │ │ │ ├── TimePicker_16x.png │ │ │ ├── Time_color_16x.png │ │ │ ├── Timeline_16x.png │ │ │ ├── Transfer_16x.png │ │ │ ├── TreeView_16x.png │ │ │ ├── VSO_Card_16x.png │ │ │ ├── ButtonClick_16x.png │ │ │ ├── ButtonGroup_16x.png │ │ │ ├── ColorPalette_16x.png │ │ │ ├── ContextMenu_16x.png │ │ │ ├── FlipVertical_16x.png │ │ │ ├── ImageBrowser_16x.png │ │ │ ├── Loading_Blue_16x.png │ │ │ ├── PasswordBox_16x.png │ │ │ ├── PopupCursor_16x.png │ │ │ ├── ProgressBar_16x.png │ │ │ ├── RadioButton_16x.png │ │ │ ├── RepeatButton_16x.png │ │ │ ├── RichTextBox_16x.png │ │ │ ├── SplitButton_16x.png │ │ │ ├── WindowsForm_16x.png │ │ │ ├── BorderElement_16x.png │ │ │ ├── DataGenerator_16x.png │ │ │ ├── DetailDataView_16x.png │ │ │ ├── DottedSplitter_16x.png │ │ │ ├── LinearCarousel_16x.png │ │ │ ├── MainMenuControl_16x.png │ │ │ ├── NotificationHub_16x.png │ │ │ ├── NumericListBox_16x.png │ │ │ ├── PolygonHexagon_16x.png │ │ │ ├── ProgressButton_16x.png │ │ │ ├── SplitterControl_16x.png │ │ │ ├── View_Portrait_16x.png │ │ │ ├── TransformRelative_16x.png │ │ │ ├── brackets_Square_16xLG.png │ │ │ ├── SortAscending_grey_16x.png │ │ │ └── TransitioningContentControl_16x.png │ │ └── under_construction.gif │ ├── Registry.txt │ └── fabric-icons.ttf │ ├── UserControl │ ├── Basic │ │ ├── IFull.cs │ │ ├── ChatBox.xaml.cs │ │ ├── TextDialog.xaml.cs │ │ └── InteractiveDialog.xaml.cs │ ├── Main │ │ ├── AppSprite.xaml.cs │ │ ├── BlogsView.xaml.cs │ │ ├── QQGroupView.xaml.cs │ │ ├── ProjectsView.xaml.cs │ │ ├── WebsitesView.xaml.cs │ │ ├── AppNotification.xaml.cs │ │ ├── ContributorsView.xaml.cs │ │ └── UnderConstruction.xaml.cs │ ├── Controls │ │ ├── CardDemoCtl.xaml.cs │ │ ├── RateDemoCtl.xaml.cs │ │ ├── BadgeDemoCtl.xaml.cs │ │ ├── ClockDemoCtl.xaml.cs │ │ ├── DialogDemoCtl.xaml.cs │ │ ├── DrawerDemoCtl.xaml.cs │ │ ├── GridDemoCtl.xaml.cs │ │ ├── PoptipDemoCtl.xaml.cs │ │ ├── ShieldDemoCtl.xaml.cs │ │ ├── SpriteDemoCtl.xaml.cs │ │ ├── DividerDemoCtl.xaml.cs │ │ ├── GotoTopDemoCtl.xaml.cs │ │ ├── GrowlDemoCtl.xaml.cs │ │ ├── TextBoxDemoCtl.xaml.cs │ │ ├── TimeBarDemoCtl.xaml.cs │ │ ├── ComboBoxDemoCtl.xaml.cs │ │ ├── CoverViewDemoCtl.xaml.cs │ │ ├── FlipClockDemoCtl.xaml.cs │ │ ├── GravatarDemoCtl.xaml.cs │ │ ├── LoadingDemoCtl.xaml.cs │ │ ├── MagnifierDemoCtl.xaml.cs │ │ ├── RangeSliderDemoCtl.xaml.cs │ │ ├── SearchBarDemoCtl.xaml.cs │ │ ├── SideMenuDemoCtl.xaml.cs │ │ ├── StepBarDemoCtl.xaml.cs │ │ ├── TimePickerDemoCtl.xaml.cs │ │ ├── TransferDemoCtl.xaml.cs │ │ ├── CarouselDemoCtl.xaml.cs │ │ ├── ChatBubbleDemoCtl.xaml.cs │ │ ├── CirclePanelDemoCtl.xaml.cs │ │ ├── DatePickerDemoCtl.xaml.cs │ │ ├── ImageBlockDemoCtl.xaml.cs │ │ ├── OutlineTextDemoCtl.xaml.cs │ │ ├── PasswordBoxDemoCtl.xaml.cs │ │ ├── TabControlDemoCtl.xaml.cs │ │ ├── NotificationDemoCtl.xaml.cs │ │ ├── PaginationDemoCtl.xaml.cs │ │ ├── RunningBlockDemoCtl.xaml.cs │ │ ├── AnimationPathDemoCtl.xaml.cs │ │ ├── ColorPickerDemoCtl.xaml.cs │ │ ├── DateTimePickerDemoCtl.xaml.cs │ │ ├── FloatingBlockDemoCtl.xaml.cs │ │ ├── HoneycombPanelDemoCtl.xaml.cs │ │ ├── ImageBrowserDemoCtl.xaml.cs │ │ ├── ProgressBarDemoCtl.xaml.cs │ │ ├── RelativePanelDemoCtl.xaml.cs │ │ ├── ScrollViewerDemoCtl.xaml.cs │ │ ├── WaterfallPanelDemoCtl.xaml.cs │ │ ├── CompareSliderDemoCtl.xaml.cs │ │ ├── PreviewSliderDemoCtl.xaml.cs │ │ └── CalendarWithClockDemoCtl.xaml.cs │ ├── Styles │ │ ├── LabelDemoCtl.xaml.cs │ │ ├── ButtonDemoCtl.xaml.cs │ │ ├── MenuDemoCtl.xaml.cs │ │ ├── BorderDemoCtl.xaml.cs │ │ ├── BrushDemoCtl.xaml.cs │ │ ├── CalendarDemoCtl.xaml.cs │ │ ├── GroupBoxDemoCtl.xaml.cs │ │ ├── ListViewDemoCtl.xaml.cs │ │ ├── SliderDemoCtl.xaml.cs │ │ ├── ToolBarDemoCtl.xaml.cs │ │ ├── CheckBoxDemoCtl.xaml.cs │ │ ├── DataGridDemoCtl.xaml.cs │ │ ├── ListBoxDemoCtl.xaml.cs │ │ ├── TreeViewDemoCtl.xaml.cs │ │ ├── RichTextBoxDemoCtl.xaml.cs │ │ ├── TextBlockDemoCtl.xaml.cs │ │ ├── ExpanderDemoCtl.xaml.cs │ │ ├── RadioButtonDemoCtl.xaml.cs │ │ ├── RepeatButtonDemoCtl.xaml.cs │ │ ├── NativeComboBoxDemoCtl.xaml.cs │ │ ├── NativeTextBoxDemoCtl.xaml.cs │ │ ├── ToggleButtonDemoCtl.xaml.cs │ │ ├── NativeDatePickerDemoCtl.xaml.cs │ │ ├── NativePasswordBoxDemoCtl.xaml.cs │ │ ├── NativeTabControlDemoCtl.xaml.cs │ │ ├── NativeProgressBarDemoCtl.xaml.cs │ │ └── NativeScrollViewerDemoCtl.xaml.cs │ └── Tools │ │ ├── EffectsDemoCtl.xaml.cs │ │ ├── GeometryAnimationDemoCtl.xaml.cs │ │ └── HatchBrushGeneratorDemoCtl.xaml.cs │ ├── Data │ ├── Model │ │ ├── StepBarDemoModel.cs │ │ ├── CoverViewDemoModel.cs │ │ ├── TabControlDemoModel.cs │ │ ├── CardModel.cs │ │ └── AvatarModel.cs │ └── Enum │ │ └── DemoType.cs │ ├── Window │ ├── BlurWindow.xaml.cs │ ├── CommonWindow.xaml.cs │ ├── DialogDemoWindow.xaml.cs │ ├── GrowlDemoWindow.xaml.cs │ └── CustomNonClientAreaWindow.xaml.cs │ └── HandyControlDemo_Shared.shproj.user ├── .gitattributes ├── Installers └── VS2019 │ ├── WpfApp │ ├── icon.ico │ ├── App.xaml.cs │ ├── packages.config │ └── MainWindow.xaml.cs │ ├── WpfCoreApp │ ├── App.xaml.cs │ ├── icon.ico │ └── MainWindow.xaml.cs │ └── HandyControl_VS2019 │ ├── icon_100_100.png │ └── icon_300_300.png ├── .gitignore └── .github └── ISSUE_TEMPLATE └── custom.md /doc/themes/next/source/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_custom/header.swig: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_custom/sidebar.swig: -------------------------------------------------------------------------------- 1 | 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/custom.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/Muse.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/themes/next/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "source/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Properties/Langs/Lang.en.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/scaffolds/draft.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ title }} 3 | tags: 4 | --- 5 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_custom/head.swig: -------------------------------------------------------------------------------- 1 | {# 2 | Custom head. 3 | #} 4 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_mixins/Gemini.styl: -------------------------------------------------------------------------------- 1 | @import "Pisces.styl"; 2 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Properties/Langs/Lang.en.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/handycontrol/data/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/tools/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/scaffolds/page.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ title }} 3 | date: {{ date }} 4 | --- 5 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/scaffolds/post.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ title }} 3 | date: {{ date }} 4 | tags: 5 | --- 6 | -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/panelElement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/tipElement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/badge/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/clock/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/rate/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/tag/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/image/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/label/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/menu/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/themes/next/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "theme-next", 3 | "root": true 4 | } 5 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_logo.styl: -------------------------------------------------------------------------------- 1 | .site-subtitle { display: none; } 2 | -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/blurWindow/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/carousel/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/chatBubble/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/comboBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/coverFlow/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/coverView/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/datePicker/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/dialog/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/flipClock/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/gifImage/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/gotoTop/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/gravatar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/loading/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/messageBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/notifyIcon/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/pagination/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/radioGroup/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/searchBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/shield/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/stepBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/tabControl/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/textBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/timeBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/timePicker/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/transfer/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/window/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/listBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/listView/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/slider/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/tabControl/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/textBlock/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/textBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/toolBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/toolTip/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/treeView/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/window/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handykeras/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: handykeras 3 | date: 2019-04-02 00:03:48 4 | --- 5 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/comments.styl: -------------------------------------------------------------------------------- 1 | .comments { margin: 60px 20px 0; } 2 | -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/animationPath/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/circlePanel/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/colorPicker/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/compareSlider/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/dateTimePicker/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/imageBrowser/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/imageViewer/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/numericUpDown/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/outlineText/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/passwordBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/popupWindow/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/previewSlider/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/progressButton/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/scrollViewer/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/simplePanel/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/waterfallPanel/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/waveProgressBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/passwordBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/progressBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/radioButton/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/richTextBox/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/scrollViewer/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/toggleButton/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/outline/outline.styl: -------------------------------------------------------------------------------- 1 | .main-inner { margin-top: 80px; } 2 | -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/calendarWithClock/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/circleProgressBar/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/simpleItemsControl/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/themes/next/.gitattributes: -------------------------------------------------------------------------------- 1 | source/lib/* linguist-vendored 2 | scripts/merge.js linguist-vendored 3 | -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | public/ 7 | .deploy*/ 8 | .vs -------------------------------------------------------------------------------- /doc/source/handycontrol/extend_controls/transitioningContentControl/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 建设中 3 | --- 4 | 5 | 建设中 -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/post/post-button.styl: -------------------------------------------------------------------------------- 1 | .post-button { 2 | margin-top: 40px; 3 | } 4 | -------------------------------------------------------------------------------- /Installers/VS2019/WpfApp/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/Installers/VS2019/WpfApp/icon.ico -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/third-party/han.styl: -------------------------------------------------------------------------------- 1 | i.fa { 2 | font-family: FontAwesome !important; 3 | } 4 | -------------------------------------------------------------------------------- /src/Net_35/bug list.txt: -------------------------------------------------------------------------------- 1 | 1. Font Blurry 2 | 2. ImageBrowser 3 | 3. NumericIcon & Background 4 | 4. Input Icon 5 | 5. Tag Icon 6 | -------------------------------------------------------------------------------- /Installers/VS2019/WpfApp/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$ 2 | { 3 | public partial class App 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/search/index.swig: -------------------------------------------------------------------------------- 1 | {% include 'localsearch.swig' %} 2 | {% include 'algolia-search.swig' %} 3 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_variables/custom.styl: -------------------------------------------------------------------------------- 1 | $headband-height = 0px 2 | $black-deep = #f06632 -------------------------------------------------------------------------------- /Installers/VS2019/WpfCoreApp/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$ 2 | { 3 | public partial class App 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Installers/VS2019/WpfCoreApp/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/Installers/VS2019/WpfCoreApp/icon.ico -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/third-party/math.styl: -------------------------------------------------------------------------------- 1 | .has-jax { 2 | overflow-x: auto; 3 | overflow-y: hidden; 4 | } 5 | -------------------------------------------------------------------------------- /doc/source/handycontrol/native_controls/contentControl/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: ContentControl 内容控件 3 | --- 4 | 5 | 所有的`ContentControl`默认无法获得焦点 -------------------------------------------------------------------------------- /doc/themes/next/source/images/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/avatar.gif -------------------------------------------------------------------------------- /doc/themes/next/source/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/loading.gif -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/sidebar/sidebar-blogroll.styl: -------------------------------------------------------------------------------- 1 | .links-of-blogroll-inline .links-of-blogroll-item { display: inline-block; } 2 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/sidebar/sidebar-blogroll.styl: -------------------------------------------------------------------------------- 1 | .links-of-blogroll-inline .links-of-blogroll-item { display: inline-block; } 2 | -------------------------------------------------------------------------------- /doc/themes/next/source/images/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/placeholder.gif -------------------------------------------------------------------------------- /doc/themes/next/source/images/searchicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/searchicon.png -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/header/headerband.styl: -------------------------------------------------------------------------------- 1 | .headband { 2 | height: $headband-height; 3 | background: $headband-bg; 4 | } 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.user 3 | *.xml 4 | [Bb]in/ 5 | [Oo]bj/ 6 | packages/ 7 | build/* 8 | !build/build.cake 9 | !build/build.nuspec 10 | !build/build.ps1 -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/exturl.swig: -------------------------------------------------------------------------------- 1 | {% if theme.exturl %} 2 | 3 | {% endif %} 4 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/tidio.swig: -------------------------------------------------------------------------------- 1 | {% if theme.tidio.enable %} 2 | 3 | {% endif %} 4 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Pisces/index.styl: -------------------------------------------------------------------------------- 1 | @import "_layout"; 2 | @import "_brand"; 3 | @import "_menu"; 4 | @import "_sub-menu"; 5 | @import "_sidebar"; 6 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Resources/dropper.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControl_Shared/Resources/dropper.cur -------------------------------------------------------------------------------- /Installers/VS2019/HandyControl_VS2019/icon_100_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/Installers/VS2019/HandyControl_VS2019/icon_100_100.png -------------------------------------------------------------------------------- /Installers/VS2019/HandyControl_VS2019/icon_300_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/Installers/VS2019/HandyControl_VS2019/icon_300_300.png -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_search.styl: -------------------------------------------------------------------------------- 1 | // Search 2 | // -------------------------------------------------- 3 | .site-search form { 4 | hide(); 5 | } 6 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/_search.styl: -------------------------------------------------------------------------------- 1 | // Search 2 | // -------------------------------------------------- 3 | .site-search form { 4 | hide(); 5 | } 6 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/1.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/2.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/3.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/4.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/5.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/b1.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/b2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/3.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/4.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/5.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/b1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/b2.jpg -------------------------------------------------------------------------------- /doc/themes/next/source/images/favicon-16x16-HandyOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/favicon-16x16-HandyOrg.png -------------------------------------------------------------------------------- /doc/themes/next/source/images/favicon-32x32-HandyOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/favicon-32x32-HandyOrg.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/icon.ico -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Cover.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Dance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Dance.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/1.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/10.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/2.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/3.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/4.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/5.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/6.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/7.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/8.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/QQ/9.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/icon.ico -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Registry.txt -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Basic/IFull.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | internal interface IFull 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /doc/themes/next/source/images/apple-touch-icon-HandyOrg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/doc/themes/next/source/images/apple-touch-icon-HandyOrg.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/1.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/2.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/3.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/4.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/5.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/6.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/7.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/8.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/9.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Flag/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Flag/cn.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Flag/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Flag/en.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/3.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/4.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/5.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/6.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/7.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/8.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/9.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/cn.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/en.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/fa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/fa.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Flag/fr.png -------------------------------------------------------------------------------- /Installers/VS2019/WpfApp/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Album/10.jpg -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/car_chase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/car_chase.gif -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/icon-white.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/qq-group.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/qq-group.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Album/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Album/10.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/car_chase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/car_chase.gif -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/icon-white.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/icon-white.ico -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/qq_group_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/qq_group_1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/qq_group_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/qq_group_2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/fabric-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/fabric-icons.ttf -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/BI.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum BI 6 | { 7 | RGB 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ChatRoleType.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum ChatRoleType 4 | { 5 | Sender, 6 | Receiver 7 | } 8 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/SideMenuItemRole.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum SideMenuItemRole 4 | { 5 | Header, 6 | Item 7 | } 8 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar1.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar2.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar3.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar4.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar5.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/Avatar/avatar6.png -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Expression/Media/UnitType.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Expression.Media 2 | { 3 | public enum UnitType 4 | { 5 | Pixel, 6 | Percent 7 | } 8 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Interactivity/TagType.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Interactivity 2 | { 3 | public enum TagType 4 | { 5 | Element, 6 | DataContext 7 | } 8 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar1.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar2.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar3.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar4.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar5.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Avatar/avatar6.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Chat/chat_back1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Chat/chat_back1.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/Chat/chat_back2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/Chat/chat_back2.jpg -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Expression/Media/UnitType.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Expression.Media 2 | { 3 | public enum UnitType 4 | { 5 | Pixel, 6 | Percent 7 | } 8 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Interactivity/TagType.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Interactivity 2 | { 3 | public enum TagType 4 | { 5 | Element, 6 | DataContext 7 | } 8 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Resources/Effects/GrayScaleEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControl_Shared/Resources/Effects/GrayScaleEffect.ps -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/index.styl: -------------------------------------------------------------------------------- 1 | @import "_layout.styl"; 2 | @import "_logo.styl"; 3 | @import "_menu.styl"; 4 | @import "_search.styl"; 5 | @import "sidebar/sidebar-blogroll"; 6 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Data/Enum/TipPlacement.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | public enum TipPlacement 5 | { 6 | TopLeft, 7 | BottomRight, 8 | } 9 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Star.png -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Interactivity/FluidMoveScope.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Interactivity 2 | { 3 | public enum FluidMoveScope 4 | { 5 | Self, 6 | Children 7 | } 8 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Boards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Boards.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Repos.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Star.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/under_construction.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/under_construction.gif -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/BadgeStatus.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum BadgeStatus 4 | { 5 | Text, 6 | Dot, 7 | Processing 8 | } 9 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Interactivity/FluidMoveScope.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Interactivity 2 | { 3 | public enum FluidMoveScope 4 | { 5 | Self, 6 | Children 7 | } 8 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Resources/Effects/ColorComplementEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControl_Shared/Resources/Effects/ColorComplementEffect.ps -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /doc/themes/next/.github/topissuebot.yml: -------------------------------------------------------------------------------- 1 | # Configuration for top-issue-bot - https://github.com/adamzolyak/gh-vote-bot 2 | 3 | labelName: '👍 Top Issue!' 4 | labelColor: '006b75' 5 | numberOfIssuesToLabel: 10 6 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/pages/post-detail.styl: -------------------------------------------------------------------------------- 1 | .page-post-detail { 2 | 3 | .sidebar-toggle-line { background: $sidebar-highlight; } 4 | 5 | .comments { overflow: hidden; } 6 | } 7 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/tags/pdf.styl: -------------------------------------------------------------------------------- 1 | .pdfobject-container { 2 | position: relative; 3 | overflow: auto; 4 | width: 100%; 5 | height: unquote(hexo-config('pdf.height')); 6 | } 7 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/third-party/gitalk.styl: -------------------------------------------------------------------------------- 1 | .gt-header a, .gt-comments a, .gt-popup a 2 | border-bottom: none; 3 | .gt-container .gt-popup .gt-action.is--active:before 4 | top: 0.7em; -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Data/Enum/SkinType.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | public enum SkinType 5 | { 6 | Default, 7 | Dark, 8 | Violet 9 | } 10 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/GCLP.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum GCLP 6 | { 7 | HBRBACKGROUND = -10 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Overview.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/SkinType.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | public enum SkinType 5 | { 6 | Default, 7 | Dark, 8 | Violet 9 | } 10 | } -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/tags/full-image.styl: -------------------------------------------------------------------------------- 1 | .posts-expand .post-body img.full-image { 2 | border: none; 3 | //max-width: 100%; 4 | //width: auto; 5 | //margin: 20px auto 25px; 6 | } 7 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Brush_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Brush_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Flow_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Flow_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Panel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Panel_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Path_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Path_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Tag_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Tag_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-Pipelines.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-TestPlans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/DevOps/DevOps-TestPlans.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Brush_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Brush_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Flow_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Flow_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Label_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Label_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Panel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Panel_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Path_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Path_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Tag_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Tag_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/User_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/User_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/thumbs_up.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Base/IGravatarGenerator.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Controls 2 | { 3 | public interface IGravatarGenerator 4 | { 5 | object GetGravatar(string id); 6 | } 7 | } -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/pages/post-details.swig: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ListBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ListBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Message_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Message_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Search_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Search_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Shield_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Shield_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Slider_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Slider_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TabPage_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TabPage_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TextBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TextBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Toggle_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Toggle_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ToolBar_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ToolBar_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/INPUT_TYPE.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum INPUT_TYPE : uint 6 | { 7 | MOUSE = 0 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Dialog_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Dialog_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Dynamic_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Dynamic_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Effects_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Effects_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/GoToTop_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/GoToTop_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ListBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ListBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Message_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Message_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Search_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Search_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Shield_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Shield_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Slider_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Slider_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TabPage_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TabPage_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TextBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TextBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Toggle_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Toggle_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ToolBar_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ToolBar_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/DrawerShowMode.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum DrawerShowMode 4 | { 5 | Cover, 6 | Push, 7 | Press 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/share/add-this.swig: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Animation_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Animation_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Calendar_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Calendar_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Carousel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Carousel_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/CheckBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/CheckBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ColorWheel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ColorWheel_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ComboBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ComboBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/DataGrid_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/DataGrid_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/DatePicker_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/DatePicker_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Expander_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Expander_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/GroupBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/GroupBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/HoverMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/HoverMenu_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ListView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ListView_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Paginator_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Paginator_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ScrollBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ScrollBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TextBlock_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TextBlock_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TimePicker_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TimePicker_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Time_color_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Time_color_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Timeline_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Timeline_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TreeView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/TreeView_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/DWM_SIT.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum DWM_SIT 6 | { 7 | None, 8 | DISPLAYFRAME 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/KDC.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum KDC 6 | { 7 | FREQUENT = 1, 8 | RECENT = 2 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Animation_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Animation_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Bubble_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Bubble_16xLG.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Calendar_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Calendar_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Carousel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Carousel_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/CheckBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/CheckBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ColorWheel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ColorWheel_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ComboBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ComboBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DataGrid_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DataGrid_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DatePicker_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DatePicker_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DotLarge_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DotLarge_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Expander_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Expander_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/GridPane_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/GridPane_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/GroupBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/GroupBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/HandyControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/HandyControl.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/HoverMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/HoverMenu_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ImageStack_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ImageStack_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ListView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ListView_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Paginator_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Paginator_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Procedure_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Procedure_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ScrollBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ScrollBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TextBlock_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TextBlock_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TimePicker_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TimePicker_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Time_color_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Time_color_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Timeline_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Timeline_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Transfer_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Transfer_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TreeView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TreeView_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/VSO_Card_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/VSO_Card_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ButtonClick_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ButtonClick_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ColorPalette_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ColorPalette_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ContextMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ContextMenu_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/FlipVertical_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/FlipVertical_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ImageBrowser_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ImageBrowser_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Loading_Blue_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/Loading_Blue_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/PasswordBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/PasswordBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ProgressBar_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ProgressBar_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/RadioButton_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/RadioButton_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/RichTextBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/RichTextBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ShapeArcRing_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/ShapeArcRing_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/WindowsForm_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/WindowsForm_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Controls/Base/ISingleOpen.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HandyControl.Controls 4 | { 5 | public interface ISingleOpen : IDisposable 6 | { 7 | bool CanDispose { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ButtonClick_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ButtonClick_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ButtonGroup_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ButtonGroup_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ColorPalette_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ColorPalette_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ContextMenu_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ContextMenu_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/FlipVertical_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/FlipVertical_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ImageBrowser_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ImageBrowser_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Loading_Blue_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/Loading_Blue_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/PasswordBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/PasswordBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/PopupCursor_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/PopupCursor_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ProgressBar_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ProgressBar_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/RadioButton_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/RadioButton_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/RepeatButton_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/RepeatButton_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/RichTextBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/RichTextBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/SplitButton_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/SplitButton_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/WindowsForm_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/WindowsForm_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Base/ISingleOpen.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HandyControl.Controls 4 | { 5 | public interface ISingleOpen : IDisposable 6 | { 7 | bool CanDispose { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/HitMode.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data.Enum 2 | { 3 | public enum HitMode 4 | { 5 | Click, 6 | Hover, 7 | Focus, 8 | None 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Tools/Pool/IPool!1.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Tools 2 | { 3 | public interface IPool 4 | { 5 | T Acquire(); 6 | 7 | bool Release(T instance); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/analytics/analytics-with-widget.swig: -------------------------------------------------------------------------------- 1 | {% include 'busuanzi-counter.swig' %} 2 | {% include 'tencent-mta.swig' %} 3 | {% include 'tencent-analytics.swig' %} 4 | {% include 'cnzz-analytics.swig' %} 5 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/BorderElement_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/BorderElement_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/DetailDataView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/DetailDataView_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/LinearCarousel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/LinearCarousel_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/NumericListBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/NumericListBox_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/SplitterControl_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/SplitterControl_16x.png -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/AC.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum AC : byte 6 | { 7 | SRC_ALPHA = 1, 8 | SRC_OVER = 0 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/BorderElement_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/BorderElement_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DataGenerator_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DataGenerator_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DetailDataView_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DetailDataView_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DottedSplitter_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/DottedSplitter_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/LinearCarousel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/LinearCarousel_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/MainMenuControl_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/MainMenuControl_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/NotificationHub_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/NotificationHub_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/NumericListBox_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/NumericListBox_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/PolygonHexagon_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/PolygonHexagon_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ProgressButton_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/ProgressButton_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/SplitterControl_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/SplitterControl_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/View_Portrait_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/View_Portrait_16x.png -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Mist/_base.styl: -------------------------------------------------------------------------------- 1 | // Tags 2 | // -------------------------------------------------- 3 | 4 | a { border-bottom-color: $grey-light; } 5 | 6 | hr { 7 | margin: 20px 0; 8 | height: 2px; 9 | } 10 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Controls/CoverView/CoverViewItem.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Controls 2 | { 3 | public class CoverViewItem : HeaderedSelectableItem 4 | { 5 | internal int Index { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/MOUSEEVENTF.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum MOUSEEVENTF 6 | { 7 | LEFTDOWN = 2, 8 | LEFTUP = 4 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/MSGFLT.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum MSGFLT 6 | { 7 | RESET, 8 | ALLOW, 9 | DISALLOW 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TransformRelative_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TransformRelative_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/brackets_Square_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/brackets_Square_16xLG.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ChatMessageType.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum ChatMessageType 4 | { 5 | String, 6 | Image, 7 | Audio, 8 | Custom 9 | } 10 | } -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/pages/pages.styl: -------------------------------------------------------------------------------- 1 | // Page specific styles 2 | 3 | @import "archive"; 4 | @import "categories"; 5 | @import "schedule"; 6 | @import "post-detail"; 7 | @import "breadcrumb"; 8 | @import "tag-cloud"; 9 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/SortAscending_grey_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Net_35/HandyControlDemo_Net_35/Resources/Img/LeftMainContent/SortAscending_grey_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/SortAscending_grey_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/SortAscending_grey_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Cover/CoverView/CoverViewItem.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Controls 2 | { 3 | public class CoverViewItem : HeaderedSelectableItem 4 | { 5 | internal int Index { get; set; } 6 | } 7 | } -------------------------------------------------------------------------------- /doc/themes/next/source/css/_schemes/Muse/_layout.styl: -------------------------------------------------------------------------------- 1 | .header-inner, .container .main-inner, .footer-inner { 2 | +mobile() { width: auto; } 3 | } 4 | 5 | // embed tag 6 | embed { 7 | show(); 8 | margin: 0px auto 25px auto; 9 | } 10 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/APPDOCLISTTYPE.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum APPDOCLISTTYPE 6 | { 7 | ADLT_RECENT, 8 | ADLT_FREQUENT 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/ULW.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum ULW 6 | { 7 | ALPHA = 2, 8 | COLORKEY = 1, 9 | OPAQUE = 4 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ShowAnimation.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum ShowAnimation 4 | { 5 | None, 6 | HorizontalMove, 7 | VerticalMove, 8 | Fade 9 | } 10 | } -------------------------------------------------------------------------------- /Installers/VS2019/WpfApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$ 2 | { 3 | public partial class MainWindow 4 | { 5 | public MainWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/DWMNCRP.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum DWMNCRP 6 | { 7 | USEWINDOWSTYLE, 8 | DISABLED, 9 | ENABLED 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/WINDOWTHEMEATTRIBUTETYPE.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum WINDOWTHEMEATTRIBUTETYPE : uint 6 | { 7 | WTA_NONCLIENT = 1 8 | } 9 | } 10 | 11 | -------------------------------------------------------------------------------- /Installers/VS2019/WpfCoreApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$ 2 | { 3 | public partial class MainWindow 4 | { 5 | public MainWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/next-boot.swig: -------------------------------------------------------------------------------- 1 | {% 2 | set boot_scripts = [ 3 | 'next-boot.js' 4 | ] 5 | %} 6 | 7 | {% for bs in boot_scripts %} 8 | 9 | {% endfor %} 10 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/MainWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo 2 | { 3 | public partial class MainWindow 4 | { 5 | public MainWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Expression/Drawing/MarchStopReason.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Expression.Drawing 2 | { 3 | internal enum MarchStopReason 4 | { 5 | CompleteStep, 6 | CompletePolyline, 7 | CornerPoint 8 | } 9 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/DWMFLIP3D.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum DWMFLIP3D 6 | { 7 | DEFAULT, 8 | EXCLUDEBELOW, 9 | EXCLUDEABOVE 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TransitioningContentControl_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/XenocodeRCE/HandyControl/master/src/Shared/HandyControlDemo_Shared/Resources/Img/LeftMainContent/TransitioningContentControl_16x.png -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Expression/Drawing/MarchStopReason.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Expression.Drawing 2 | { 3 | internal enum MarchStopReason 4 | { 5 | CompleteStep, 6 | CompletePolyline, 7 | CornerPoint 8 | } 9 | } -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/schemes/muse.swig: -------------------------------------------------------------------------------- 1 | {% 2 | set scripts = [ 3 | 'schemes/muse.js' 4 | ] 5 | %} 6 | 7 | {% for script in scripts %} 8 | 9 | {% endfor %} 10 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/scroll-cookie.swig: -------------------------------------------------------------------------------- 1 | {% if theme.save_scroll %} 2 | 3 | 4 | {% endif %} 5 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Data/Model/StepBarDemoModel.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Data 2 | { 3 | public class StepBarDemoModel 4 | { 5 | public string Header { get; set; } 6 | 7 | public string Content { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Interactivity/PreviewInvokeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HandyControl.Interactivity 4 | { 5 | public class PreviewInvokeEventArgs : EventArgs 6 | { 7 | public bool Cancelling { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/FO.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum FO 6 | { 7 | COPY = 2, 8 | DELETE = 3, 9 | MOVE = 1, 10 | RENAME = 4 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/SIATTRIBFLAGS.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum SIATTRIBFLAGS 6 | { 7 | AND = 1, 8 | APPCOMPAT = 3, 9 | OR = 2 10 | } 11 | } 12 | 13 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Model/StepBarDemoModel.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Data 2 | { 3 | public class StepBarDemoModel 4 | { 5 | public string Header { get; set; } 6 | 7 | public string Content { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Interactivity/PreviewInvokeEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HandyControl.Interactivity 4 | { 5 | public class PreviewInvokeEventArgs : EventArgs 6 | { 7 | public bool Cancelling { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/post/post-tags.styl: -------------------------------------------------------------------------------- 1 | .posts-expand .post-tags { 2 | margin-top: 40px; 3 | text-align: center; 4 | 5 | a { 6 | display: inline-block; 7 | margin-right: 10px; 8 | font-size: 13px; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Data/Enum/TitleAlignment.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | /// 5 | /// 标题对齐方式 6 | /// 7 | public enum TitleAlignment 8 | { 9 | Left, 10 | Top 11 | } 12 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/WndProc.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | using System.Runtime.CompilerServices; 5 | 6 | internal delegate IntPtr WndProc(IntPtr hwnd, Standard.WM uMsg, IntPtr wParam, IntPtr lParam); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/TitleAlignment.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | /// 5 | /// 标题对齐方式 6 | /// 7 | public enum TitleAlignment 8 | { 9 | Left, 10 | Top 11 | } 12 | } -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/post-edit.swig: -------------------------------------------------------------------------------- 1 | {% if theme.post_edit.enable -%} 2 | {% set editIcon = '' -%} 3 | {{ next_url(theme.post_edit.url + page.source, editIcon, {class: 'post-edit-link', title: __('post.edit') }) }} 4 | {%- endif %} 5 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/analytics/cnzz-analytics.swig: -------------------------------------------------------------------------------- 1 | {% if theme.cnzz_siteid %} 2 |
3 | 4 |
5 | {% endif %} 6 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/pages/tag-cloud.styl: -------------------------------------------------------------------------------- 1 | .tag-cloud { 2 | text-align: center; 3 | 4 | a { 5 | display: inline-block; 6 | margin: 10px; 7 | } 8 | 9 | a:hover { 10 | color: $link-hover-color !important; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Data/Enum/InfoType.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | public enum InfoType 5 | { 6 | Success = 0, 7 | Info, 8 | Warning, 9 | Error, 10 | Fatal, 11 | Ask 12 | } 13 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/SLGP.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | [Flags] 6 | internal enum SLGP 7 | { 8 | RAWPATH = 4, 9 | SHORTPATH = 1, 10 | UNCPRIORITY = 2 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/InfoType.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControl.Data 3 | { 4 | public enum InfoType 5 | { 6 | Success = 0, 7 | Info, 8 | Warning, 9 | Error, 10 | Fatal, 11 | Ask 12 | } 13 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/HandyControlConfig.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public class HandyControlConfig 4 | { 5 | public SystemVersionInfo SystemVersionInfo { get; set; } 6 | 7 | public string Lang { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/commons.swig: -------------------------------------------------------------------------------- 1 | {% 2 | set js_commons = [ 3 | 'utils.js', 4 | 'motion.js' 5 | ] 6 | %} 7 | 8 | {% for common in js_commons %} 9 | 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Data/Enum/DemoType.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.Data 3 | { 4 | public enum DemoType 5 | { 6 | Type1 = 1, 7 | Type2, 8 | Type3, 9 | Type4, 10 | Type5, 11 | Type6 12 | } 13 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Window/BlurWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class BlurWindow 4 | { 5 | public BlurWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Controls/Time/Clock/ClockRadioButton.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | 4 | namespace HandyControl.Controls 5 | { 6 | public class ClockRadioButton : RadioButton 7 | { 8 | public int Num { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Enum/DemoType.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.Data 3 | { 4 | public enum DemoType 5 | { 6 | Type1 = 1, 7 | Type2, 8 | Type3, 9 | Type4, 10 | Type5, 11 | Type6 12 | } 13 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Model/CoverViewDemoModel.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Data 2 | { 3 | public class CoverViewDemoModel 4 | { 5 | public string ImgPath { get; set; } 6 | 7 | public string BackgroundToken { get; set; } 8 | } 9 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/BlurWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class BlurWindow 4 | { 5 | public BlurWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Time/Clock/ClockRadioButton.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | 3 | 4 | namespace HandyControl.Controls 5 | { 6 | public class ClockRadioButton : RadioButton 7 | { 8 | public int Num { get; set; } 9 | } 10 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Data/Enum/ColLayoutStatus.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public enum ColLayoutStatus 4 | { 5 | Xs, 6 | Sm, 7 | Md, 8 | Lg, 9 | Xl, 10 | Xxl, 11 | Auto 12 | } 13 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Window/CommonWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class CommonWindow 4 | { 5 | public CommonWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/RGN.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum RGN 6 | { 7 | AND = 1, 8 | COPY = 5, 9 | DIFF = 4, 10 | OR = 2, 11 | XOR = 3 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Basic/ChatBox.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ChatBox 4 | { 5 | public ChatBox() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/CommonWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class CommonWindow 4 | { 5 | public CommonWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /doc/themes/next/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | indent_style = space 11 | indent_size = 2 12 | 13 | [*.py] 14 | indent_size = 4 15 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_scripts/schemes/pisces.swig: -------------------------------------------------------------------------------- 1 | {% 2 | set scripts = [ 3 | 'affix.js', 4 | 'schemes/pisces.js' 5 | ] 6 | %} 7 | 8 | {% for script in scripts %} 9 | 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/AppSprite.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class AppSprite 4 | { 5 | public AppSprite() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/BlogsView.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class BlogsView 4 | { 5 | public BlogsView() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/passwordBoxAttach/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: PasswordBoxAttach 密码框专用 3 | --- 4 | 5 | 该附加属性为hc内部密码框样式专用,不推荐直接使用。 6 | 7 | # 属性 8 | 9 | | 名称 | 用途 | 10 | | -------------- | -------- | 11 | | IsMonitoring | 是否监测密码长度 | 12 | | PasswordLength | 密码长度 | -------------------------------------------------------------------------------- /doc/themes/next/.github/weekly-digest.yml: -------------------------------------------------------------------------------- 1 | # Configuration for weekly-digest - https://github.com/apps/weekly-digest 2 | 3 | publishDay: sun 4 | canPublishIssues: true 5 | canPublishPullRequests: true 6 | canPublishContributors: true 7 | canPublishStargazers: true 8 | canPublishCommits: true 9 | -------------------------------------------------------------------------------- /doc/themes/next/layout/_third-party/analytics/index.swig: -------------------------------------------------------------------------------- 1 | {% include 'facebook-sdk.swig' %} 2 | {% include 'vkontakte-api.swig' %} 3 | {% include 'google-analytics.swig' %} 4 | {% include 'baidu-analytics.swig' %} 5 | {% include 'application-insights.swig' %} 6 | {% include 'growingio.swig' %} 7 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Main/QQGroupView.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class QQGroupView 4 | { 5 | public QQGroupView() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Controls/Base/ISelectable.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace HandyControl.Controls 4 | { 5 | public interface ISelectable 6 | { 7 | event RoutedEventHandler Selected; 8 | 9 | bool IsSelected { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/JumpPath.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Windows.Shell 2 | { 3 | using System; 4 | using System.Runtime.CompilerServices; 5 | 6 | public class JumpPath : JumpItem 7 | { 8 | public string Path { get; set; } 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/OLECMDEXECOPT.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum OLECMDEXECOPT 6 | { 7 | DODEFAULT, 8 | PROMPTUSER, 9 | DONTPROMPTUSER, 10 | SHOWHELP 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/THB.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | [Flags] 6 | internal enum THB : uint 7 | { 8 | BITMAP = 1, 9 | FLAGS = 8, 10 | ICON = 2, 11 | TOOLTIP = 4 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Model/TabControlDemoModel.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Data 2 | { 3 | public class TabControlDemoModel 4 | { 5 | public string Header { get; set; } 6 | 7 | public string BackgroundToken { get; set; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Basic/TextDialog.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TextDialog 4 | { 5 | public TextDialog() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/QQGroupView.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class QQGroupView 4 | { 5 | public QQGroupView() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/DialogDemoWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class DialogDemoWindow 4 | { 5 | public DialogDemoWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/GrowlDemoWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class GrowlDemoWindow 4 | { 5 | public GrowlDemoWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Controls/Base/ISelectable.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace HandyControl.Controls 4 | { 5 | public interface ISelectable 6 | { 7 | event RoutedEventHandler Selected; 8 | 9 | bool IsSelected { get; set; } 10 | } 11 | } -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 附加属性 3 | --- 4 | 5 | 附加属性源码在Controls / Attach文件夹中: 6 | 7 | ![Attach](https://raw.githubusercontent.com/HandyOrg/HandyOrgResource/master/HandyControl/Doc/attach/Attach.png) 8 | 9 | 以`Element`结尾的类,可以为所有的控件设置一些共有的属性,以`Attach`结尾的类,只能为一种控件设置相关的属性。 -------------------------------------------------------------------------------- /doc/themes/next/layout/_partials/search/index.swig: -------------------------------------------------------------------------------- 1 | {% if theme.algolia_search.enable %} 2 | {% include 'algolia-search.swig' %} 3 | {% elif theme.swiftype_key %} 4 | {% include 'swiftype.swig' %} 5 | {% elif theme.local_search.enable %} 6 | {% include 'localsearch.swig' %} 7 | {% endif %} 8 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/RateDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RateDemoCtl 4 | { 5 | public RateDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/CombineRgnResult.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum CombineRgnResult 6 | { 7 | ERROR, 8 | NULLREGION, 9 | SIMPLEREGION, 10 | COMPLEXREGION 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/DeviceCap.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum DeviceCap 6 | { 7 | BITSPIXEL = 12, 8 | LOGPIXELSX = 0x58, 9 | LOGPIXELSY = 90, 10 | PLANES = 14 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/WndProcHook.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | using System.Runtime.CompilerServices; 5 | 6 | internal delegate IntPtr WndProcHook(IntPtr hwnd, Standard.WM uMsg, IntPtr wParam, IntPtr lParam, ref bool handled); 7 | } 8 | 9 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/CardDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CardDemoCtl 4 | { 5 | public CardDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/RateDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RateDemoCtl 4 | { 5 | public RateDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/ProjectsView.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ProjectsView 4 | { 5 | public ProjectsView() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/WebsitesView.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class WebsitesView 4 | { 5 | public WebsitesView() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/LabelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class LabelDemoCtl 4 | { 5 | public LabelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/GridSplitter.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/edgeElement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: EdgeElement 具有边界内容的元素 3 | --- 4 | 5 | # 属性 6 | 7 | | 名称 | 用途 | 8 | |-|-| 9 | | LeftContent | 左侧边界内容 | 10 | | TopContent | 顶部边界内容 | 11 | | RightContent | 右侧边界内容 | 12 | | BottomContent | 底部边界内容 | 13 | | ShowEdgeContent | 是否显示边界内容 | -------------------------------------------------------------------------------- /doc/themes/next/crowdin.yml: -------------------------------------------------------------------------------- 1 | files: 2 | - source: /languages/en.yml 3 | translation: /languages/%two_letters_code%.%file_extension% 4 | languages_mapping: 5 | two_letters_code: 6 | zh-CN: zh-CN 7 | zh-TW: zh-TW 8 | zh-HK: zh-HK 9 | pt-BR: pt-BR 10 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/post/post-rtl.styl: -------------------------------------------------------------------------------- 1 | .rtl { 2 | &.post-body { 3 | p, a, h1, h2, h3, h4, h5, h6, li, ul, ol { 4 | direction: rtl; 5 | font-family: UKIJ Ekran; 6 | } 7 | } 8 | &.post-title { 9 | font-family: UKIJ Ekran; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/ShieldDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ShieldDemoCtl 4 | { 5 | public ShieldDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/MenuDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class MenuDemoCtl 5 | { 6 | public MenuDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/READYSTATE.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum READYSTATE 6 | { 7 | UNINITIALIZED, 8 | LOADING, 9 | LOADED, 10 | INTERACTIVE, 11 | COMPLETE 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/HandyControlDemo_Shared.shproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | false 5 | 6 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/BadgeDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class BadgeDemoCtl 4 | { 5 | public BadgeDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ClockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ClockDemoCtl 5 | { 6 | public ClockDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/DialogDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class DialogDemoCtl 4 | { 5 | public DialogDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/DrawerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class DrawerDemoCtl 4 | { 5 | public DrawerDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/GridDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class GridDemoCtl : IFull 4 | { 5 | public GridDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/PoptipDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class PoptipDemoCtl 4 | { 5 | public PoptipDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ShieldDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ShieldDemoCtl 4 | { 5 | public ShieldDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/SpriteDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class SpriteDemoCtl 4 | { 5 | public SpriteDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/ButtonDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ButtonDemoCtl 4 | { 5 | public ButtonDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/MenuDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class MenuDemoCtl 5 | { 6 | public MenuDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Tools/EffectsDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class EffectsDemoCtl 4 | { 5 | public EffectsDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/Styles/ContentControl.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/scaffolding/scaffolding.styl: -------------------------------------------------------------------------------- 1 | // 2 | // Scaffolding 3 | // ================================================= 4 | 5 | @import "normalize"; 6 | @import "base"; 7 | @import "helpers"; 8 | @import "tables"; 9 | @import "mobile" if hexo-config('mobile_layout_economy'); 10 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/TextBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TextBoxDemoCtl 4 | { 5 | public TextBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Main/ContributorsView.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ContributorsView 5 | { 6 | public ContributorsView() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/BorderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class BorderDemoCtl 5 | { 6 | public BorderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/BrushDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class BrushDemoCtl 5 | { 6 | public BrushDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/GroupBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class GroupBoxDemoCtl 4 | { 5 | public GroupBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/ListViewDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ListViewDemoCtl 4 | { 5 | public ListViewDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/SliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class SliderDemoCtl 5 | { 6 | public SliderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/ToolBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ToolBarDemoCtl 4 | { 5 | public ToolBarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/MSGFLTINFO.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum MSGFLTINFO 6 | { 7 | NONE, 8 | ALREADYALLOWED_FORWND, 9 | ALREADYDISALLOWED_FORWND, 10 | ALLOWED_HIGHER 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/NIM.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum NIM : uint 6 | { 7 | ADD = 0, 8 | DELETE = 2, 9 | MODIFY = 1, 10 | SETFOCUS = 3, 11 | SETVERSION = 4 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/SPIF.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | [Flags] 6 | internal enum SPIF 7 | { 8 | None = 0, 9 | SENDCHANGE = 2, 10 | SENDWININICHANGE = 2, 11 | UPDATEINIFILE = 1 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/TBPF.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum TBPF 6 | { 7 | ERROR = 4, 8 | INDETERMINATE = 1, 9 | NOPROGRESS = 0, 10 | NORMAL = 2, 11 | PAUSED = 8 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/DividerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class DividerDemoCtl 4 | { 5 | public DividerDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/GotoTopDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class GotoTopDemoCtl 4 | { 5 | public GotoTopDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/GrowlDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class GrowlDemoCtl 5 | { 6 | public GrowlDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/TextBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TextBoxDemoCtl 4 | { 5 | public TextBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/TimeBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TimeBarDemoCtl 4 | { 5 | public TimeBarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/AppNotification.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class AppNotification 4 | { 5 | public AppNotification() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/ContributorsView.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ContributorsView 5 | { 6 | public ContributorsView() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/BorderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class BorderDemoCtl 5 | { 6 | public BorderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/BrushDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class BrushDemoCtl 5 | { 6 | public BrushDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/CalendarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CalendarDemoCtl 4 | { 5 | public CalendarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/GroupBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class GroupBoxDemoCtl 4 | { 5 | public GroupBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/ListViewDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ListViewDemoCtl 4 | { 5 | public ListViewDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/SliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class SliderDemoCtl 5 | { 6 | public SliderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/ToolBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ToolBarDemoCtl 4 | { 5 | public ToolBarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/ComboBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ComboBoxDemoCtl 4 | { 5 | public ComboBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/CoverViewDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CoverViewDemoCtl 4 | { 5 | public CoverViewDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/FlipClockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class FlipClockDemoCtl 4 | { 5 | public FlipClockDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/LoadingDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class LoadingDemoCtl 5 | { 6 | public LoadingDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/SearchBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class SearchBarDemoCtl 4 | { 5 | public SearchBarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/TimeBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class TimeBarDemoCtl 5 | { 6 | public TimeBarDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/CheckBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CheckBoxDemoCtl 5 | { 6 | public CheckBoxDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/ListBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ListBoxDemoCtl 5 | { 6 | public ListBoxDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/TreeViewDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class TreeViewDemoCtl 5 | { 6 | public TreeViewDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/DOGIF.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum DOGIF 6 | { 7 | DEFAULT = 0, 8 | NO_HDROP = 2, 9 | NO_URL = 4, 10 | ONLY_IF_ONE = 8, 11 | TRAVERSE_LINK = 1 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Basic/InteractiveDialog.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class InteractiveDialog 4 | { 5 | public InteractiveDialog() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ComboBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ComboBoxDemoCtl 4 | { 5 | public ComboBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/CoverViewDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CoverViewDemoCtl 4 | { 5 | public CoverViewDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/FlipClockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class FlipClockDemoCtl 4 | { 5 | public FlipClockDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/GravatarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class GravatarDemoCtl 4 | { 5 | public GravatarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/LoadingDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class LoadingDemoCtl 5 | { 6 | public LoadingDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/MagnifierDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class MagnifierDemoCtl 4 | { 5 | public MagnifierDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/RangeSliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RangeSliderDemoCtl 4 | { 5 | public RangeSliderDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/SearchBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class SearchBarDemoCtl 4 | { 5 | public SearchBarDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/SideMenuDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class SideMenuDemoCtl 4 | { 5 | public SideMenuDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/StepBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class StepBarDemoCtl 5 | { 6 | public StepBarDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/TimePickerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TimePickerDemoCtl 4 | { 5 | public TimePickerDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/TransferDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TransferDemoCtl 4 | { 5 | public TransferDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Main/UnderConstruction.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class UnderConstruction 4 | { 5 | public UnderConstruction() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/CheckBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CheckBoxDemoCtl 5 | { 6 | public CheckBoxDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/DataGridDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class DataGridDemoCtl 5 | { 6 | public DataGridDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/ListBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ListBoxDemoCtl 5 | { 6 | public ListBoxDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/TreeViewDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class TreeViewDemoCtl 5 | { 6 | public TreeViewDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/highlight/diff.styl: -------------------------------------------------------------------------------- 1 | $highlight_theme = hexo-config("highlight_theme") 2 | 3 | if $highlight_theme == "normal" 4 | $highlight-deletion = #fdd 5 | $highlight-addition = #dfd 6 | else 7 | $highlight-deletion = #800000 8 | $highlight-addition = #008000 9 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/CarouselDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CarouselDemoCtl 5 | { 6 | public CarouselDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/CirclePanelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CirclePanelDemoCtl 4 | { 5 | public CirclePanelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/OutlineTextDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class OutlineTextDemoCtl 4 | { 5 | public OutlineTextDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/PasswordBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class PasswordBoxDemoCtl 4 | { 5 | public PasswordBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Model/CardModel.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Data 2 | { 3 | public class CardModel 4 | { 5 | public string Header { get; set; } 6 | 7 | public string Content { get; set; } 8 | 9 | public string Footer { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/CarouselDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CarouselDemoCtl 5 | { 6 | public CarouselDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ChatBubbleDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ChatBubbleDemoCtl 4 | { 5 | public ChatBubbleDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/CirclePanelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CirclePanelDemoCtl 4 | { 5 | public CirclePanelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/DatePickerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class DatePickerDemoCtl 4 | { 5 | public DatePickerDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ImageBlockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class ImageBlockDemoCtl 4 | { 5 | public ImageBlockDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/OutlineTextDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class OutlineTextDemoCtl 4 | { 5 | public OutlineTextDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/PasswordBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class PasswordBoxDemoCtl 4 | { 5 | public PasswordBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/TabControlDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class TabControlDemoCtl 4 | { 5 | public TabControlDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/RichTextBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RichTextBoxDemoCtl 4 | { 5 | public RichTextBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/TextBlockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class TextBlockDemoCtl 5 | { 6 | public TextBlockDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/header/header.styl: -------------------------------------------------------------------------------- 1 | .header { background: $head-bg; } 2 | 3 | .header-inner { position: relative; } 4 | 5 | @import "headerband"; 6 | @import "site-meta"; 7 | @import "site-nav"; 8 | @import "menu"; 9 | @import "github-banner" if hexo-config('github_banner.enable'); 10 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/post/post-type.styl: -------------------------------------------------------------------------------- 1 | // TODO: Refactor. 2 | 3 | .page-home, .page-post-detail { 4 | .post-type-quote { 5 | .post-header, 6 | .post-tags { 7 | hide(); 8 | } 9 | 10 | blockquote { 11 | @extend .blockquote-center 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/PaginationDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class PaginationDemoCtl 5 | { 6 | public PaginationDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/TabControlDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class TabControlDemoCtl 5 | { 6 | public TabControlDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/NaiveComboBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class NaiveComboBoxDemoCtl 4 | { 5 | public NaiveComboBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/ProgressBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ProgressBarDemoCtl 5 | { 6 | public ProgressBarDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/RadioButtonDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class RadioButtonDemoCtl 5 | { 6 | public RadioButtonDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Window/CustomNonClientAreaWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class CustomNonClientAreaWindow 4 | { 5 | public CustomNonClientAreaWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/JumpItemRejectionReason.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Windows.Shell 2 | { 3 | using System; 4 | 5 | public enum JumpItemRejectionReason 6 | { 7 | None, 8 | InvalidItem, 9 | NoRegisteredHandler, 10 | RemovedByUser 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/NotificationDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class NotificationDemoCtl 4 | { 5 | public NotificationDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/PaginationDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class PaginationDemoCtl 5 | { 6 | public PaginationDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/RunningBlockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RunningBlockDemoCtl 4 | { 5 | public RunningBlockDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/ExpanderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | 3 | namespace HandyControlDemo.UserControl 4 | { 5 | public partial class ExpanderDemoCtl 6 | { 7 | public ExpanderDemoCtl() 8 | { 9 | InitializeComponent(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/RadioButtonDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class RadioButtonDemoCtl 5 | { 6 | public RadioButtonDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/RepeatButtonDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RepeatButtonDemoCtl 4 | { 5 | public RepeatButtonDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Window/CustomNonClientAreaWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.Window 2 | { 3 | public partial class CustomNonClientAreaWindow 4 | { 5 | public CustomNonClientAreaWindow() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Resources/Effects/ColorComplementEffect.fx: -------------------------------------------------------------------------------- 1 | float4 main(float2 uv : TEXCOORD) : COLOR 2 | { 3 | float4 color = tex2D(implicitInput, uv); 4 | float4 complement; 5 | 6 | complement.rgb = color.a - color.rgb; 7 | complement.a = color.a; 8 | 9 | return complement; 10 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/ColorPickerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ColorPickerDemoCtl 5 | { 6 | public ColorPickerDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/ScrollViewerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ScrollViewerDemoCtl 5 | { 6 | public ScrollViewerDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/WaterfallPanelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class WaterfallPanelDemoCtl 4 | { 5 | public WaterfallPanelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/NaiveTextBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NaiveTextBoxDemoCtl 5 | { 6 | public NaiveTextBoxDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/POINT.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | using System.Runtime.InteropServices; 5 | 6 | [StructLayout(LayoutKind.Sequential)] 7 | internal struct POINT 8 | { 9 | public int x; 10 | public int y; 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/SIZE.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | using System.Runtime.InteropServices; 5 | 6 | [StructLayout(LayoutKind.Sequential)] 7 | internal struct SIZE 8 | { 9 | public int cx; 10 | public int cy; 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/TaskbarItemProgressState.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Windows.Shell 2 | { 3 | using System; 4 | 5 | public enum TaskbarItemProgressState 6 | { 7 | None, 8 | Indeterminate, 9 | Normal, 10 | Error, 11 | Paused 12 | } 13 | } 14 | 15 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/Data/Model/AvatarModel.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.Data 3 | { 4 | public class AvatarModel 5 | { 6 | public string DisplayName { get; set; } 7 | 8 | public string Link { get; set; } 9 | 10 | public string AvatarUri { get; set; } 11 | } 12 | } -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/AnimationPathDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class AnimationPathDemoCtl 4 | { 5 | public AnimationPathDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ColorPickerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ColorPickerDemoCtl 5 | { 6 | public ColorPickerDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/DateTimePickerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class DateTimePickerDemoCtl 4 | { 5 | public DateTimePickerDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/FloatingBlockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class FloatingBlockDemoCtl 4 | { 5 | public FloatingBlockDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/HoneycombPanelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class HoneycombPanelDemoCtl 4 | { 5 | public HoneycombPanelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ImageBrowserDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ImageBrowserDemoCtl 5 | { 6 | public ImageBrowserDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ProgressBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ProgressBarDemoCtl 5 | { 6 | public ProgressBarDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/RelativePanelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class RelativePanelDemoCtl 4 | { 5 | public RelativePanelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/ScrollViewerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ScrollViewerDemoCtl 5 | { 6 | public ScrollViewerDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/WaterfallPanelDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class WaterfallPanelDemoCtl 4 | { 5 | public WaterfallPanelDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeComboBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class NativeComboBoxDemoCtl 4 | { 5 | public NativeComboBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeTextBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NativeTextBoxDemoCtl 5 | { 6 | public NativeTextBoxDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/ToggleButtonDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class ToggleButtonDemoCtl 5 | { 6 | public ToggleButtonDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /doc/source/handycontrol/attach/iconSwitchElement/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: IconSwitchElement 可切换图标的元素 3 | --- 4 | 5 | {% note info no-icon %} 6 | 继承自 [IconElement](https://handyorg.github.io/handycontrol/attach/iconElement/) 7 | {% endnote %} 8 | 9 | # 属性 10 | 11 | | 名称 | 用途 | 12 | |-|-| 13 | | GeometrySelected | 选中时的几何形状 | -------------------------------------------------------------------------------- /doc/themes/next/source/css/_common/components/tags/tags.styl: -------------------------------------------------------------------------------- 1 | @import "full-image"; 2 | @import "blockquote-center"; 3 | @import "group-pictures"; 4 | @import "label"; 5 | @import "note" if not hexo-config('note.style') == 'disabled'; 6 | @import "tabs" if hexo-config('tabs.enable'); 7 | @import "pdf" if hexo-config('pdf.enable'); 8 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/AnimationPathDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class AnimationPathDemoCtl 5 | { 6 | public AnimationPathDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/CompareSliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CompareSliderDemoCtl 5 | { 6 | public CompareSliderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/PreviewSliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class PreviewSliderDemoCtl 5 | { 6 | public PreviewSliderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/NaivePasswordBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class NaivePasswordBoxDemoCtl 4 | { 5 | public NaivePasswordBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/CompareSliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CompareSliderDemoCtl 5 | { 6 | public CompareSliderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/PreviewSliderDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class PreviewSliderDemoCtl 5 | { 6 | public PreviewSliderDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeDatePickerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class NativeDatePickerDemoCtl 4 | { 5 | public NativeDatePickerDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Tools/GeometryAnimationDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class GeometryAnimationDemoCtl 4 | { 5 | public GeometryAnimationDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/Resources/Themes/Style.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/NaiveTabControlDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NaiveTabControlDemoCtl 5 | { 6 | public NaiveTabControlDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Expression/Media/DrawingPropertyMetadataOptions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HandyControl.Expression.Media 4 | { 5 | [Flags] 6 | internal enum DrawingPropertyMetadataOptions 7 | { 8 | AffectsMeasure = 1, 9 | AffectsRender = 0x10, 10 | None = 0 11 | } 12 | } -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Themes/SkinDark.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Themes/SkinDefault.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Controls/CalendarWithClockDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class CalendarWithClockDemoCtl 4 | { 5 | public CalendarWithClockDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativePasswordBoxDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class NativePasswordBoxDemoCtl 4 | { 5 | public NativePasswordBoxDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeTabControlDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NativeTabControlDemoCtl 5 | { 6 | public NativeTabControlDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Expression/Media/DrawingPropertyMetadataOptions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace HandyControl.Expression.Media 4 | { 5 | [Flags] 6 | internal enum DrawingPropertyMetadataOptions 7 | { 8 | AffectsMeasure = 1, 9 | AffectsRender = 0x10, 10 | None = 0 11 | } 12 | } -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/SkinDark.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/SkinDefault.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Controls/CircleProgressBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class CircleProgressBarDemoCtl 5 | { 6 | public CircleProgressBarDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControlDemo_Net_35/UserControl/Styles/NaiveScrollViewerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NaiveScrollViewerDemoCtl 5 | { 6 | public NaiveScrollViewerDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/MF.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | [Flags] 6 | internal enum MF : uint 7 | { 8 | BYCOMMAND = 0, 9 | DISABLED = 2, 10 | DOES_NOT_EXIST = 0xffffffff, 11 | ENABLED = 0, 12 | GRAYED = 1 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/MessageHandler.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | using System.Runtime.CompilerServices; 5 | using System.Runtime.InteropServices; 6 | 7 | internal delegate IntPtr MessageHandler(Standard.WM uMsg, IntPtr wParam, IntPtr lParam, out bool handled); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Shell/Standard/SICHINT.cs: -------------------------------------------------------------------------------- 1 | namespace Standard 2 | { 3 | using System; 4 | 5 | internal enum SICHINT : uint 6 | { 7 | ALLFIELDS = 0x80000000, 8 | CANONICAL = 0x10000000, 9 | DISPLAY = 0, 10 | TEST_FILESYSPATH_IF_NOT_EQUAL = 0x20000000 11 | } 12 | } 13 | 14 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Themes/SkinViolet.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeProgressBarDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NativeProgressBarDemoCtl 5 | { 6 | public NativeProgressBarDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Styles/NativeScrollViewerDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | 2 | namespace HandyControlDemo.UserControl 3 | { 4 | public partial class NativeScrollViewerDemoCtl 5 | { 6 | public NativeScrollViewerDemoCtl() 7 | { 8 | InitializeComponent(); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Shared/HandyControlDemo_Shared/UserControl/Tools/HatchBrushGeneratorDemoCtl.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControlDemo.UserControl 2 | { 3 | public partial class HatchBrushGeneratorDemoCtl 4 | { 5 | public HatchBrushGeneratorDemoCtl() 6 | { 7 | InitializeComponent(); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/Shared/HandyControl_Shared/Themes/SkinViolet.xaml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/Net_35/HandyControl_Net_35/Data/Gif/GifPropertyItem.cs: -------------------------------------------------------------------------------- 1 | namespace HandyControl.Data 2 | { 3 | public class GifPropertyItem 4 | { 5 | public int Id { get; set; } 6 | 7 | public int Len { get; set; } 8 | 9 | public short Type { get; set; } 10 | 11 | public byte[] Value { get; set; } 12 | } 13 | } --------------------------------------------------------------------------------