在好例子网,分享、交流、成长!
您当前所在位置:首页Sliverlight 开发实例SliverLight基础 → wpf开源控件源码

wpf开源控件源码

SliverLight基础

下载此实例
  • 开发语言:Sliverlight
  • 实例大小:66.23M
  • 下载次数:32
  • 浏览次数:446
  • 发布时间:2022-01-16
  • 实例类别:SliverLight基础
  • 发 布 人:yangyu9527
  • 文件格式:.zip
  • 所需积分:2
 相关标签: wpf PF 开源 wp 控件

实例介绍

【实例简介】wpf开源控件源码

【实例截图】

from clipboard

【核心代码】

.
├── AduSkin-master
│   ├── README.md
│   ├── relatedcomponents
│   │   └── libvlc.7z
│   ├── screenshot
│   │   ├── Cover (1).png
│   │   ├── Cover (2).png
│   │   ├── Cover (3).png
│   │   ├── other
│   │   │   └── zhifu.jpg
│   │   └── project
│   │       ├── AduShopping.gif
│   │       ├── Shadow.png
│   │       ├── SuperEvil.png
│   │       └── aduchat.gif
│   └── src
│       ├── AduSkin
│       │   ├── AduSkin.csproj
│       │   ├── AduSkin.nuspec
│       │   ├── Commen
│       │   │   ├── ExternDll.cs
│       │   │   └── UnsafeNativeMethods.cs
│       │   ├── Controls
│       │   │   ├── ControlEnum.cs
│       │   │   ├── Converter
│       │   │   │   ├── BoolToVisibility.cs
│       │   │   │   ├── CalendarDayButtonTypeConverter.cs
│       │   │   │   ├── CornerRadiusToDouble.cs
│       │   │   │   ├── DoubleFactor.cs
│       │   │   │   ├── DoubleToCornerRadius.cs
│       │   │   │   ├── DoubleToThickness.cs
│       │   │   │   ├── OffsetConverter.cs
│       │   │   │   └── StringToVisibility.cs
│       │   │   ├── Data
│       │   │   │   ├── Args
│       │   │   │   │   ├── CancelRoutedEventArgs.cs
│       │   │   │   │   └── FunctionEventArgs1.cs
│       │   │   │   └── ValueBoxes.cs
│       │   │   ├── Expression
│       │   │   │   └── Drawing
│       │   │   │       ├── GeometryHelper.cs
│       │   │   │       └── MathHelper.cs
│       │   │   ├── Helper
│       │   │   │   ├── ItemsControlExtensions.cs
│       │   │   │   ├── ScrollViewerBehavior.cs
│       │   │   │   ├── ValidateHelper.cs
│       │   │   │   └── VisualHelper.cs
│       │   │   ├── Metro
│       │   │   │   ├── AduButtonIcon.cs
│       │   │   │   ├── AduButtonRemind.cs
│       │   │   │   ├── AduButtonSvg.cs
│       │   │   │   ├── AduButtonTransparent.cs
│       │   │   │   ├── AduCheckBox.cs
│       │   │   │   ├── AduCheckButton.cs
│       │   │   │   ├── AduComboBox.cs
│       │   │   │   ├── AduContactItem.cs
│       │   │   │   ├── AduContextMenuButton.cs
│       │   │   │   ├── AduDIYCheckBox.cs
│       │   │   │   ├── AduDIYRadionButton.cs
│       │   │   │   ├── AduDataGrid.cs
│       │   │   │   ├── AduDatePickers
│       │   │   │   │   ├── AduCalendar.cs
│       │   │   │   │   ├── AduCalendarButton.cs
│       │   │   │   │   ├── AduCalendarDayButton.cs
│       │   │   │   │   ├── AduCalendarItem.cs
│       │   │   │   │   ├── AduDatePicker.cs
│       │   │   │   │   ├── AduDateTimePicker.cs
│       │   │   │   │   ├── AduFlatDatePicker.cs
│       │   │   │   │   ├── AduTimeButton.cs
│       │   │   │   │   ├── AduTimePicker.cs
│       │   │   │   │   ├── AduTimeSelector.cs
│       │   │   │   │   └── TimePicker.cs
│       │   │   │   ├── AduExpander.cs
│       │   │   │   ├── AduFlatButton.cs
│       │   │   │   ├── AduFlatRadionButton.cs
│       │   │   │   ├── AduFlatSilder.cs
│       │   │   │   ├── AduGroupBox.cs
│       │   │   │   ├── AduGroupBoxNor.cs
│       │   │   │   ├── AduIndexRadionButton.cs
│       │   │   │   ├── AduLoading.cs
│       │   │   │   ├── AduNavigationPanel.cs
│       │   │   │   ├── AduNoExpander.cs
│       │   │   │   ├── AduNotice
│       │   │   │   │   ├── Notice.cs
│       │   │   │   │   └── NoticeItem.cs
│       │   │   │   ├── AduNumericUpDown
│       │   │   │   │   ├── AduDoubleUpDown.cs
│       │   │   │   │   ├── AduIntegerUpDown.cs
│       │   │   │   │   ├── AduNumericUpDown.cs
│       │   │   │   │   └── AduNumericUpDownBase.cs
│       │   │   │   ├── AduPage.cs
│       │   │   │   ├── AduPasswordBox.cs
│       │   │   │   ├── AduPathIconButton.cs
│       │   │   │   ├── AduRadioButton.cs
│       │   │   │   ├── AduRadioButtonIcon.cs
│       │   │   │   ├── AduRipple.cs
│       │   │   │   ├── AduRippleAssist.cs
│       │   │   │   ├── AduSearchBox.cs
│       │   │   │   ├── AduSlider.cs
│       │   │   │   ├── AduSysButton.cs
│       │   │   │   ├── AduTabControl.cs
│       │   │   │   ├── AduTabItem.cs
│       │   │   │   ├── AduTextBlock
│       │   │   │   │   ├── TextBlockHighlightSource.cs
│       │   │   │   │   ├── TextBlockHighlightSourceConverter.cs
│       │   │   │   │   └── TextBlockService.cs
│       │   │   │   ├── AduTimeLine
│       │   │   │   │   ├── AduTimeline.cs
│       │   │   │   │   └── AduTimelineItem.cs
│       │   │   │   ├── AduToolTip.cs
│       │   │   │   ├── AduUpload.cs
│       │   │   │   ├── AduWindow.cs
│       │   │   │   ├── AnimationPath.cs
│       │   │   │   ├── Base
│       │   │   │   │   ├── AduButtonBase.cs
│       │   │   │   │   ├── ISelectable.cs
│       │   │   │   │   └── SelectableItem.cs
│       │   │   │   ├── Carousel
│       │   │   │   │   ├── Carousel.cs
│       │   │   │   │   └── SlideSwitchPanel.cs
│       │   │   │   ├── HCRunningBlock.cs
│       │   │   │   ├── HCShield.cs
│       │   │   │   ├── HCSimplePanel.cs
│       │   │   │   ├── HCTabControl
│       │   │   │   │   ├── HCTabControl.cs
│       │   │   │   │   ├── HCTabItem.cs
│       │   │   │   │   └── HCTabPanel.cs
│       │   │   │   ├── MetroBorder.cs
│       │   │   │   ├── MetroButton.cs
│       │   │   │   ├── MetroCanvasGrid.cs
│       │   │   │   ├── MetroColorPicker.xaml
│       │   │   │   ├── MetroColorPicker.xaml.cs
│       │   │   │   ├── MetroComboBox.cs
│       │   │   │   ├── MetroComboBoxItem.cs
│       │   │   │   ├── MetroContextMenu.cs
│       │   │   │   ├── MetroExpander.cs
│       │   │   │   ├── MetroFocusButton.cs
│       │   │   │   ├── MetroGroupBox.cs
│       │   │   │   ├── MetroImage.cs
│       │   │   │   ├── MetroMenuItem.cs
│       │   │   │   ├── MetroMenuSeparator.cs
│       │   │   │   ├── MetroMenuTabControl.cs
│       │   │   │   ├── MetroMenuTabItem.cs
│       │   │   │   ├── MetroPath.cs
│       │   │   │   ├── MetroProgressBar.cs
│       │   │   │   ├── MetroRichTextBox.cs
│       │   │   │   ├── MetroScrollViewer.cs
│       │   │   │   ├── MetroSwitch.cs
│       │   │   │   ├── MetroTabControl.cs
│       │   │   │   ├── MetroTabItem.cs
│       │   │   │   ├── MetroTextBlock.cs
│       │   │   │   ├── MetroTextBox.cs
│       │   │   │   ├── MetroTextButton.cs
│       │   │   │   ├── MetroThumb.cs
│       │   │   │   ├── MetroTitleMenu.cs
│       │   │   │   ├── MetroTitleMenuItem.cs
│       │   │   │   ├── MetroVisualElement.cs
│       │   │   │   ├── MetroWaterfallFlow.cs
│       │   │   │   ├── MetroWebBrowser.xaml
│       │   │   │   ├── MetroWebBrowser.xaml.cs
│       │   │   │   ├── MetroWindow.cs
│       │   │   │   ├── RatingBar
│       │   │   │   │   ├── RatingBar.cs
│       │   │   │   │   └── RatingBarButton.cs
│       │   │   │   ├── SegmentControls
│       │   │   │   │   ├── SegmentControl.cs
│       │   │   │   │   └── SegmentItem.cs
│       │   │   │   └── TransitioningContentControl.cs
│       │   │   ├── Tools
│       │   │   │   ├── Extension
│       │   │   │   │   ├── EdgeElement.cs
│       │   │   │   │   ├── GeometryExtension.cs
│       │   │   │   │   └── UIElementExtension.cs
│       │   │   │   └── Helper
│       │   │   │       ├── AnimationHelper.cs
│       │   │   │       ├── ArithmeticHelper.cs
│       │   │   │       ├── ResourceHelper.cs
│       │   │   │       └── VisualHelper.cs
│       │   │   └── Utility.cs
│       │   ├── Interactivity
│       │   │   ├── AdornerContainer.cs
│       │   │   ├── AttachableCollection!1.cs
│       │   │   ├── Behavior!1.cs
│       │   │   ├── Behavior.cs
│       │   │   ├── BehaviorCollection.cs
│       │   │   ├── Commands
│       │   │   │   ├── CloseWindowCommand.cs
│       │   │   │   ├── ControlCommands.cs
│       │   │   │   ├── OpenLinkCommand.cs
│       │   │   │   ├── PushMainWindow2TopCommand.cs
│       │   │   │   └── ShutdownAppCommand.cs
│       │   │   ├── DefaultTriggerAttribute.cs
│       │   │   ├── EventToCommand.cs
│       │   │   ├── EventTrigger.cs
│       │   │   ├── EventTriggerBase!1.cs
│       │   │   ├── EventTriggerBase.cs
│       │   │   ├── ExceptionStringTable.cs
│       │   │   ├── ExtendedVisualStateManager.cs
│       │   │   ├── FluidMoveBehavior.cs
│       │   │   ├── FluidMoveBehaviorBase.cs
│       │   │   ├── FluidMoveScope.cs
│       │   │   ├── IAttachedObject.cs
│       │   │   ├── IEventArgsConverter.cs
│       │   │   ├── Interaction.cs
│       │   │   ├── InvokeCommandAction.cs
│       │   │   ├── MouseDragElementBehavior.cs
│       │   │   ├── MouseDragElementBehaviorEx.cs
│       │   │   ├── NameResolvedEventArgs.cs
│       │   │   ├── NameResolver.cs
│       │   │   ├── PreviewInvokeEventArgs.cs
│       │   │   ├── RoutedEventTrigger.cs
│       │   │   ├── TagType.cs
│       │   │   ├── TransitionEffect.cs
│       │   │   ├── TriggerAction!1.cs
│       │   │   ├── TriggerAction.cs
│       │   │   ├── TriggerActionCollection.cs
│       │   │   ├── TriggerBase.cs
│       │   │   ├── TriggerCollection.cs
│       │   │   └── TypeConstraintAttribute.cs
│       │   ├── Properties
│       │   │   ├── AssemblyInfo.cs
│       │   │   ├── Resources.Designer.cs
│       │   │   ├── Resources.resx
│       │   │   ├── Settings.Designer.cs
│       │   │   └── Settings.settings
│       │   ├── Resources
│       │   │   ├── Icon.png
│       │   │   ├── logo.ico
│       │   │   └── logo.png
│       │   ├── Themes
│       │   │   ├── Generic.xaml
│       │   │   ├── Metro
│       │   │   │   ├── AduButtonIcon.xaml
│       │   │   │   ├── AduButtonRemind.xaml
│       │   │   │   ├── AduButtonSvg.xaml
│       │   │   │   ├── AduButtonTransparent.xaml
│       │   │   │   ├── AduCarousel.xaml
│       │   │   │   ├── AduCheckBox.xaml
│       │   │   │   ├── AduCheckButton.xaml
│       │   │   │   ├── AduComboBox.xaml
│       │   │   │   ├── AduContactItem.xaml
│       │   │   │   ├── AduContextMenuButton.xaml
│       │   │   │   ├── AduConverter.xaml
│       │   │   │   ├── AduDIYCheckBox.xaml
│       │   │   │   ├── AduDIYRadionButton.xaml
│       │   │   │   ├── AduDataGrid.xaml
│       │   │   │   ├── AduDatePickers
│       │   │   │   │   ├── AduCalendar.xaml
│       │   │   │   │   ├── AduCalendarButton.xaml
│       │   │   │   │   ├── AduCalendarDayButton.xaml
│       │   │   │   │   ├── AduCalendarItem.xaml
│       │   │   │   │   ├── AduDatePicker.xaml
│       │   │   │   │   ├── AduTimePicker.xaml
│       │   │   │   │   └── AduTimeSelector.xaml
│       │   │   │   ├── AduExpander.xaml
│       │   │   │   ├── AduFlatButton.xaml
│       │   │   │   ├── AduFlatRadionButton.xaml
│       │   │   │   ├── AduFlatSilder.xaml
│       │   │   │   ├── AduGroupBox.xaml
│       │   │   │   ├── AduGroupBoxNor.xaml
│       │   │   │   ├── AduIndexRadionButton.xaml
│       │   │   │   ├── AduListBox.xaml
│       │   │   │   ├── AduLoading
│       │   │   │   │   ├── AduLoading.xaml
│       │   │   │   │   ├── Apple.xaml
│       │   │   │   │   ├── Cogs.xaml
│       │   │   │   │   ├── DoubleRound.xaml
│       │   │   │   │   ├── Grids.xaml
│       │   │   │   │   ├── Lines.xaml
│       │   │   │   │   ├── Normal.xaml
│       │   │   │   │   ├── PathAnimation.xaml
│       │   │   │   │   ├── Rotate.xaml
│       │   │   │   │   └── SingleRound.xaml
│       │   │   │   ├── AduNavigationPanel.xaml
│       │   │   │   ├── AduNotice
│       │   │   │   │   ├── Notice.xaml
│       │   │   │   │   ├── Notifiaction.xaml
│       │   │   │   │   └── Notifiaction.xaml.cs
│       │   │   │   ├── AduNumericUpDown.xaml
│       │   │   │   ├── AduPage.xaml
│       │   │   │   ├── AduPasswordBox.xaml
│       │   │   │   ├── AduPathIconButton.xaml
│       │   │   │   ├── AduRadioButton.xaml
│       │   │   │   ├── AduRadioButtonIcon.xaml
│       │   │   │   ├── AduSearchBox.xaml
│       │   │   │   ├── AduSegmentControl.xaml
│       │   │   │   ├── AduSlider.xaml
│       │   │   │   ├── AduSysButton.xaml
│       │   │   │   ├── AduTabControl.xaml
│       │   │   │   ├── AduTabItem.xaml
│       │   │   │   ├── AduTimeLine.xaml
│       │   │   │   ├── AduToolTip.xaml
│       │   │   │   ├── AduUpload.xaml
│       │   │   │   ├── AduWindow.xaml
│       │   │   │   ├── AduWindow.xaml.cs
│       │   │   │   ├── AngleBorder.cs
│       │   │   │   ├── HCRunningBlock.xaml
│       │   │   │   ├── HCShield.xaml
│       │   │   │   ├── HCTransitioningContentControl.xaml
│       │   │   │   ├── HcTabControl.xaml
│       │   │   │   ├── Metro.xaml
│       │   │   │   ├── MetroBase.xaml
│       │   │   │   ├── MetroButton.xaml
│       │   │   │   ├── MetroCanvasGrid.xaml
│       │   │   │   ├── MetroComboBox.xaml
│       │   │   │   ├── MetroComboBoxItem.xaml
│       │   │   │   ├── MetroContextMenu.xaml
│       │   │   │   ├── MetroExpander.xaml
│       │   │   │   ├── MetroFocusButton.xaml
│       │   │   │   ├── MetroGroupBox.xaml
│       │   │   │   ├── MetroImage.xaml
│       │   │   │   ├── MetroMenuItem.xaml
│       │   │   │   ├── MetroMenuSeparator.xaml
│       │   │   │   ├── MetroMenuTabControl.xaml
│       │   │   │   ├── MetroMenuTabItem.xaml
│       │   │   │   ├── MetroPath.xaml
│       │   │   │   ├── MetroProgressBar.xaml
│       │   │   │   ├── MetroRichTextBox.xaml
│       │   │   │   ├── MetroScrollViewer.xaml
│       │   │   │   ├── MetroSwitch.xaml
│       │   │   │   ├── MetroTabControl.xaml
│       │   │   │   ├── MetroTabItem.xaml
│       │   │   │   ├── MetroTextBlock.xaml
│       │   │   │   ├── MetroTextBox.xaml
│       │   │   │   ├── MetroTextButton.xaml
│       │   │   │   ├── MetroTitleMenu.xaml
│       │   │   │   ├── MetroTitleMenuItem.xaml
│       │   │   │   ├── MetroVisualElement.xaml
│       │   │   │   ├── MetroWaterfallFlow.xaml
│       │   │   │   ├── MetroWindow.xaml
│       │   │   │   ├── MetroWindow.xaml.cs
│       │   │   │   ├── RatingBar
│       │   │   │   │   ├── RatingBar.xaml
│       │   │   │   │   └── RatingBarButton.xaml
│       │   │   │   └── Window.xaml
│       │   │   └── Theme.cs
│       │   └── Utility
│       │       ├── AduMethod
│       │       │   ├── DateTimeHelper.cs
│       │       │   ├── HttpHelper.cs
│       │       │   └── VlcUtil.cs
│       │       ├── Computer
│       │       │   ├── Screen.cs
│       │       │   └── TaskBarPostion.cs
│       │       ├── Element
│       │       │   ├── ElementBase.cs
│       │       │   └── VisualObj.cs
│       │       ├── Extend
│       │       │   └── StringExtend.cs
│       │       └── Media
│       │           ├── HsbaColor.cs
│       │           ├── ResObj.cs
│       │           ├── RgbaColor.cs
│       │           ├── StreamObj.cs
│       │           └── Utility.cs
│       ├── AduSkin.Demo
│       │   ├── AduSkin.Demo.csproj
│       │   ├── App.xaml
│       │   ├── App.xaml.cs
│       │   ├── Converter
│       │   │   ├── StringRepeatConverter.cs
│       │   │   └── ValueConver.cs
│       │   ├── Data
│       │   │   ├── ControlToken.cs
│       │   │   └── Enum
│       │   │       └── AduEnums.cs
│       │   ├── MainWindow.xaml
│       │   ├── MainWindow.xaml.cs
│       │   ├── Models
│       │   │   ├── Carousel.cs
│       │   │   ├── ChatUserModel.cs
│       │   │   ├── CompanyModel.cs
│       │   │   ├── ControlModel.cs
│       │   │   ├── DemoModel.cs
│       │   │   ├── NoticeInfo.cs
│       │   │   └── Sys_Code.cs
│       │   ├── Properties
│       │   │   ├── AssemblyInfo.cs
│       │   │   ├── Resources.Designer.cs
│       │   │   ├── Resources.resx
│       │   │   ├── Settings.Designer.cs
│       │   │   └── Settings.settings
│       │   ├── Resources
│       │   │   ├── Img
│       │   │   │   └── Header
│       │   │   │       ├── 头像1.png
│       │   │   │       ├── 头像2.png
│       │   │   │       ├── 头像3.png
│       │   │   │       ├── 头像4.png
│       │   │   │       ├── 头像5.png
│       │   │   │       └── 头像6.png
│       │   │   ├── aduskin.png
│       │   │   ├── editIcon.png
│       │   │   ├── github.png
│       │   │   ├── pic.jpg
│       │   │   ├── tabIcon.png
│       │   │   └── titleMuenIcon.png
│       │   ├── Style
│       │   │   ├── AduTreeView.xaml
│       │   │   ├── BaseStyle.xaml
│       │   │   ├── Converter.xaml
│       │   │   └── ShowControl.xaml
│       │   ├── UserControls
│       │   │   ├── BaiduTranslate.xaml
│       │   │   ├── BaiduTranslate.xaml.cs
│       │   │   ├── CarouselContainer.xaml
│       │   │   ├── CarouselContainer.xaml.cs
│       │   │   ├── ContextMenuDemo.xaml
│       │   │   ├── ContextMenuDemo.xaml.cs
│       │   │   ├── DataGridDemo.xaml
│       │   │   ├── DataGridDemo.xaml.cs
│       │   │   ├── ExpanderMenu.xaml
│       │   │   ├── ExpanderMenu.xaml.cs
│       │   │   ├── HttpTool.xaml
│       │   │   ├── HttpTool.xaml.cs
│       │   │   ├── ImageTool.xaml
│       │   │   ├── ImageTool.xaml.cs
│       │   │   ├── MultiFunctionTabControl.xaml
│       │   │   ├── MultiFunctionTabControl.xaml.cs
│       │   │   ├── NavigationPanel.xaml
│       │   │   ├── NavigationPanel.xaml.cs
│       │   │   ├── NoticeDemo.xaml
│       │   │   ├── NoticeDemo.xaml.cs
│       │   │   ├── SortGroup.xaml
│       │   │   ├── SortGroup.xaml.cs
│       │   │   ├── TimeLine.xaml
│       │   │   ├── TimeLine.xaml.cs
│       │   │   ├── TransitioningContentControlDemo.xaml
│       │   │   ├── TransitioningContentControlDemo.xaml.cs
│       │   │   ├── TreeMenu.xaml
│       │   │   ├── TreeMenu.xaml.cs
│       │   │   ├── UploadPic.xaml
│       │   │   ├── UploadPic.xaml.cs
│       │   │   ├── VideoPlayer.xaml
│       │   │   └── VideoPlayer.xaml.cs
│       │   ├── ViewModel
│       │   │   ├── DemoViewModel
│       │   │   │   ├── DataGridDemoViewModel.cs
│       │   │   │   ├── NoticeDemoViewModel.cs
│       │   │   │   └── SortGroupViewModel.cs
│       │   │   ├── MainViewModel.cs
│       │   │   ├── ModuleViewModel
│       │   │   │   ├── AduSkinAboutViewModel.cs
│       │   │   │   └── PracticalCaseViewModel.cs
│       │   │   ├── ToolViewModel
│       │   │   │   └── HttpToolViewModel.cs
│       │   │   └── ViewModelLocator.cs
│       │   ├── Views
│       │   │   ├── AduSkinAbout.xaml
│       │   │   ├── AduSkinAbout.xaml.cs
│       │   │   ├── AduSkinDemo.xaml
│       │   │   ├── AduSkinDemo.xaml.cs
│       │   │   ├── AduVideoDemo.xaml
│       │   │   ├── AduVideoDemo.xaml.cs
│       │   │   ├── CommonControlCase.xaml
│       │   │   ├── CommonControlCase.xaml.cs
│       │   │   ├── PracticalCase.xaml
│       │   │   └── PracticalCase.xaml.cs
│       │   ├── logo.ico
│       │   ├── logo.png
│       │   └── packages.config
│       ├── AduSkin.sln
│       ├── AduVideoPlayer
│       │   ├── AduVideoPlayer.csproj
│       │   ├── Controls
│       │   │   ├── AduVideoPlayer.xaml
│       │   │   ├── VideoInfo.cs
│       │   │   └── VideoPlayer.cs
│       │   ├── Properties
│       │   │   └── AssemblyInfo.cs
│       │   └── packages.config
│       └── packages
│           ├── CommonServiceLocator.2.0.2
│           │   └── CommonServiceLocator.2.0.2.nupkg
│           ├── MvvmLightLibs.5.4.1.1
│           │   ├── MvvmLightLibs.5.4.1.1.nupkg
│           │   └── lib
│           │       ├── SL5
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   └── GalaSoft.MvvmLight.xml
│           │       ├── monoandroid1
│           │       │   ├── GalaSoft.MvvmLight.Extras.XML
│           │       │   ├── GalaSoft.MvvmLight.Platform.XML
│           │       │   └── GalaSoft.MvvmLight.XML
│           │       ├── net35
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.xml
│           │       │   └── System.Windows.Interactivity.xml
│           │       ├── net40
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.xml
│           │       │   └── System.Windows.Interactivity.xml
│           │       ├── net45
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.Platform.xml
│           │       │   └── GalaSoft.MvvmLight.xml
│           │       ├── portable-net45 wp8 wpa81 netcore45 monoandroid1 xamarin.ios10
│           │       │   ├── GalaSoft.MvvmLight.Extras.XML
│           │       │   └── GalaSoft.MvvmLight.XML
│           │       ├── uap10.0
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.Platform.xml
│           │       │   └── GalaSoft.MvvmLight.xml
│           │       ├── windows81
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.Platform.xml
│           │       │   └── GalaSoft.MvvmLight.xml
│           │       ├── wp8
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.Platform.xml
│           │       │   └── GalaSoft.MvvmLight.xml
│           │       ├── wp81
│           │       │   ├── GalaSoft.MvvmLight.Extras.xml
│           │       │   ├── GalaSoft.MvvmLight.Platform.xml
│           │       │   └── GalaSoft.MvvmLight.xml
│           │       ├── wpa81
│           │       │   ├── GalaSoft.MvvmLight.Extras.XML
│           │       │   ├── GalaSoft.MvvmLight.Platform.XML
│           │       │   └── GalaSoft.MvvmLight.XML
│           │       └── xamarin.ios10
│           │           ├── GalaSoft.MvvmLight.Extras.XML
│           │           ├── GalaSoft.MvvmLight.Platform.XML
│           │           └── GalaSoft.MvvmLight.XML
│           ├── Vlc.DotNet.Core.3.0.0
│           │   └── Vlc.DotNet.Core.3.0.0.nupkg
│           ├── Vlc.DotNet.Core.Interops.3.0.0
│           │   └── Vlc.DotNet.Core.Interops.3.0.0.nupkg
│           └── Vlc.DotNet.Wpf.3.0.0
│               └── Vlc.DotNet.Wpf.3.0.0.nupkg
└── 好例子网_AduSkin-master.zip

83 directories, 447 files


标签: wpf PF 开源 wp 控件

实例下载地址

wpf开源控件源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警