实例介绍
简单的特效控件,通过WPF实现,可以进行再开发或是学习思路。
【实例截图】
【核心代码】
4744300845151037918.zip
└── bot
├── BOT.sln
├── BOT.suo
├── changelog.md
├── CommonAssemblyInfo.cs
├── lib
│ ├── Microsoft.Xaml.Tools.dll
│ └── Microsoft.Xaml.Tools.pdb
├── net40-client
│ ├── Bot
│ │ ├── AnimatingPanel.cs
│ │ ├── AnimatingTilePanel.cs
│ │ ├── BlockBarBase.cs
│ │ ├── BlockBarCircle.cs
│ │ ├── BlockBarRect.cs
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Microsoft.Expression.Interactions.dll
│ │ │ │ ├── Microsoft.Practices.Prism.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.xml
│ │ │ │ ├── Microsoft.Practices.Prism.xml
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.pdb
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.xml
│ │ │ │ ├── PixelLab.Common.dll
│ │ │ │ ├── PixelLab.Common.pdb
│ │ │ │ ├── PixelLab.Core.dll
│ │ │ │ ├── PixelLab.Core.pdb
│ │ │ │ ├── PixelLab.Wpf.dll
│ │ │ │ ├── PixelLab.Wpf.pdb
│ │ │ │ └── System.Windows.Interactivity.dll
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── PixelLab.Wpf.csproj.FileListAbsolute.txt
│ │ │ ├── PixelLab.Wpf.csprojResolveAssemblyReference.cache
│ │ │ ├── PixelLab.Wpf.dll
│ │ │ ├── PixelLab.Wpf.g.resources
│ │ │ ├── PixelLab.Wpf_MarkupCompile.cache
│ │ │ ├── PixelLab.Wpf_MarkupCompile.i.cache
│ │ │ ├── PixelLab.Wpf_MarkupCompile.lref
│ │ │ ├── PixelLab.Wpf.pdb
│ │ │ ├── Themes
│ │ │ │ ├── ColorPicker.generic.baml
│ │ │ │ ├── generic.baml
│ │ │ │ ├── InfoTextBox.generic.baml
│ │ │ │ ├── Luna.NormalColor.baml
│ │ │ │ ├── NumericUpDown.generic.baml
│ │ │ │ ├── OrgTree.generic.baml
│ │ │ │ ├── TemplateBorder.generic.baml
│ │ │ │ └── Zap.Generic.baml
│ │ │ ├── TreeMap3DUserControl.baml
│ │ │ ├── TreeMap3DUserControl.g.cs
│ │ │ └── TreeMap3DUserControl.g.i.cs
│ │ ├── ButtonBase3D.cs
│ │ ├── ColorBrushConverter.cs
│ │ ├── ColorPicker.cs
│ │ ├── DragPreviewAdorner.cs
│ │ ├── Graph.cs
│ │ ├── InfoTextBox.cs
│ │ ├── ListPager.cs
│ │ ├── NotifyWorker.cs
│ │ ├── NumericUpDown.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ └── TempPE
│ │ ├── OrgTree.cs
│ │ ├── OrgTreeItem.cs
│ │ ├── packages.config
│ │ ├── PixelLab.Wpf.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ReorderListBox.cs
│ │ ├── Reveal.cs
│ │ ├── RevealModeHorizontal.cs
│ │ ├── RevealModeVertical.cs
│ │ ├── ShowElement.cs
│ │ ├── TemplateBorder.cs
│ │ ├── themes
│ │ │ ├── ColorPicker.generic.xaml
│ │ │ ├── generic.xaml
│ │ │ ├── InfoTextBox.generic.xaml
│ │ │ ├── Luna.NormalColor.xaml
│ │ │ ├── NumericUpDown.generic.xaml
│ │ │ ├── OrgTree.generic.xaml
│ │ │ ├── TemplateBorder.generic.xaml
│ │ │ └── Zap.Generic.xaml
│ │ ├── Transition3D.cs
│ │ ├── Transitions
│ │ │ ├── ClothTransition.cs
│ │ │ ├── DoorTransition.cs
│ │ │ ├── ExplosionTransition.cs
│ │ │ ├── FadeTransition.cs
│ │ │ ├── FlipTransition.cs
│ │ │ ├── PageTransition.cs
│ │ │ ├── RotateTransition.cs
│ │ │ ├── StoryboardTransition.cs
│ │ │ ├── Transition3D.cs
│ │ │ ├── Transition.cs
│ │ │ ├── TransitionPresenter.cs
│ │ │ ├── TransitionSelector.cs
│ │ │ ├── TranslateTransition.cs
│ │ │ └── TwoWayTransitionSelector.cs
│ │ ├── TreeMap3D.cs
│ │ ├── TreeMap3DUserControl.xaml
│ │ ├── TreeMap3DUserControl.xaml.cs
│ │ ├── TreeMapPanel.cs
│ │ ├── TreeViewHelper.cs
│ │ ├── UIListPager.cs
│ │ ├── WpfUtil.cs
│ │ ├── WrapperElement.cs
│ │ └── Zap
│ │ ├── ZapCommandItem.cs
│ │ ├── ZapDecorator.cs
│ │ ├── ZapPanel.cs
│ │ └── ZapScroller.cs
│ ├── Bot.Demo
│ │ ├── AnimatingTilePanelPage.xaml
│ │ ├── AnimatingTilePanelPage.xaml.cs
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── BlockBarPage.xaml
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Microsoft.Expression.Interactions.dll
│ │ │ │ ├── Microsoft.Practices.Prism.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.xml
│ │ │ │ ├── Microsoft.Practices.Prism.xml
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.pdb
│ │ │ │ ├── Microsoft.Practices.ServiceLocation.xml
│ │ │ │ ├── Microsoft.Xaml.Tools.dll
│ │ │ │ ├── Microsoft.Xaml.Tools.pdb
│ │ │ │ ├── PixelLab.Common.dll
│ │ │ │ ├── PixelLab.Common.pdb
│ │ │ │ ├── PixelLab.Core.dll
│ │ │ │ ├── PixelLab.Core.pdb
│ │ │ │ ├── PixelLab.Wpf.Demo.exe
│ │ │ │ ├── PixelLab.Wpf.Demo.pdb
│ │ │ │ ├── PixelLab.Wpf.Demo.vshost.exe
│ │ │ │ ├── PixelLab.Wpf.Demo.vshost.exe.manifest
│ │ │ │ ├── PixelLab.Wpf.dll
│ │ │ │ ├── PixelLab.Wpf.pdb
│ │ │ │ └── System.Windows.Interactivity.dll
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── AnimatingTilePanelPage.baml
│ │ │ ├── AnimatingTilePanelPage.g.cs
│ │ │ ├── AnimatingTilePanelPage.g.i.cs
│ │ │ ├── App.baml
│ │ │ ├── App.g.cs
│ │ │ ├── App.g.i.cs
│ │ │ ├── BlockBarPage.baml
│ │ │ ├── ColorPicker
│ │ │ │ └── ColorPickerPage.baml
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── FlipTile3D
│ │ │ │ └── FlipTile3DPage.baml
│ │ │ ├── FolderPicker
│ │ │ │ └── FolderPickerPage.baml
│ │ │ ├── GeneratedInternalTypeHelper.g.cs
│ │ │ ├── GeneratedInternalTypeHelper.g.i.cs
│ │ │ ├── Graph
│ │ │ │ ├── GraphPage.baml
│ │ │ │ ├── GraphPage.g.cs
│ │ │ │ └── GraphPage.g.i.cs
│ │ │ ├── Hex
│ │ │ │ └── HexPage.baml
│ │ │ ├── InfoTextBoxPage.baml
│ │ │ ├── Interactive3DPage.baml
│ │ │ ├── Interactive3DPage.g.cs
│ │ │ ├── Interactive3DPage.g.i.cs
│ │ │ ├── IntroductionPage.baml
│ │ │ ├── KevinButton
│ │ │ │ └── KevinButtonPage.baml
│ │ │ ├── ListPagerPage.baml
│ │ │ ├── ListPagerPage.g.cs
│ │ │ ├── ListPagerPage.g.i.cs
│ │ │ ├── MainPage.baml
│ │ │ ├── MainPage.g.cs
│ │ │ ├── MainPage.g.i.cs
│ │ │ ├── MineSweeper
│ │ │ │ ├── MineSweeperPage.baml
│ │ │ │ ├── MineSweeperPage.g.cs
│ │ │ │ └── MineSweeperPage.g.i.cs
│ │ │ ├── NotifyWorkerPage.baml
│ │ │ ├── NotifyWorkerPage.g.cs
│ │ │ ├── NotifyWorkerPage.g.i.cs
│ │ │ ├── NumericUpDownPage.baml
│ │ │ ├── OrgTree
│ │ │ │ ├── OrgTreePage.baml
│ │ │ │ ├── OrgTreePage.g.cs
│ │ │ │ └── OrgTreePage.g.i.cs
│ │ │ ├── PixelLab.Wpf.Demo.csproj.FileListAbsolute.txt
│ │ │ ├── PixelLab.Wpf.Demo.csprojResolveAssemblyReference.cache
│ │ │ ├── PixelLab.Wpf.Demo.exe
│ │ │ ├── PixelLab.Wpf.Demo.g.resources
│ │ │ ├── PixelLab.Wpf.Demo_MarkupCompile.cache
│ │ │ ├── PixelLab.Wpf.Demo_MarkupCompile.i.cache
│ │ │ ├── PixelLab.Wpf.Demo_MarkupCompile.lref
│ │ │ ├── PixelLab.Wpf.Demo.pdb
│ │ │ ├── RadioButtonListPage.baml
│ │ │ ├── ReorderListBoxPage.baml
│ │ │ ├── ReorderListBoxPage.g.cs
│ │ │ ├── ReorderListBoxPage.g.i.cs
│ │ │ ├── RevealPage.baml
│ │ │ ├── Set
│ │ │ │ ├── SetPage.baml
│ │ │ │ ├── SetPage.g.cs
│ │ │ │ └── SetPage.g.i.cs
│ │ │ ├── ShowElementPage.baml
│ │ │ ├── ShowElementPage.g.cs
│ │ │ ├── ShowElementPage.g.i.cs
│ │ │ ├── TransitionPresenter
│ │ │ │ ├── TransitionPresenterPage.baml
│ │ │ │ ├── TransitionPresenterPage.g.cs
│ │ │ │ └── TransitionPresenterPage.g.i.cs
│ │ │ ├── TreeMapPanelPage.baml
│ │ │ ├── TreeMapPanelPage.g.cs
│ │ │ ├── TreeMapPanelPage.g.i.cs
│ │ │ ├── TreeViewDoubleClickPage.baml
│ │ │ ├── TreeViewDoubleClickPage.g.cs
│ │ │ ├── TreeViewDoubleClickPage.g.i.cs
│ │ │ ├── TreeViewHelperClasses
│ │ │ │ ├── TreeViewHelperPage.baml
│ │ │ │ ├── TreeViewHelperPage.g.cs
│ │ │ │ └── TreeViewHelperPage.g.i.cs
│ │ │ ├── VisualTreeViewer
│ │ │ │ ├── VisualTreeViewerPage.baml
│ │ │ │ ├── VisualTreeViewerPage.g.cs
│ │ │ │ └── VisualTreeViewerPage.g.i.cs
│ │ │ ├── VSCopyToHtmlPage.baml
│ │ │ ├── VSCopyToHtmlPage.g.cs
│ │ │ ├── VSCopyToHtmlPage.g.i.cs
│ │ │ ├── XamlShirt.baml
│ │ │ ├── ZapPage.baml
│ │ │ ├── ZapPage.g.cs
│ │ │ └── ZapPage.g.i.cs
│ │ ├── ColorPicker
│ │ │ ├── Code.cs
│ │ │ └── ColorPickerPage.xaml
│ │ ├── Core
│ │ │ ├── DemoMetadataAttribute.cs
│ │ │ ├── DemoMetadata.cs
│ │ │ ├── DemoMetadataProperties.cs
│ │ │ ├── IsStringEmptyConverter.cs
│ │ │ ├── SampleImageHelper.cs
│ │ │ └── XamlComponent.cs
│ │ ├── DemoCollection.cs
│ │ ├── FlipTile3D
│ │ │ ├── FlipTile3D.cs
│ │ │ ├── FlipTile3DPage.xaml
│ │ │ └── FlipTile.cs
│ │ ├── FolderPicker
│ │ │ ├── ChildSelection.cs
│ │ │ ├── drive.png
│ │ │ ├── FolderPickerPage.xaml
│ │ │ ├── LocalDrives.cs
│ │ │ └── SelectableDirectory.cs
│ │ ├── Graph
│ │ │ ├── GraphPage.xaml
│ │ │ ├── GraphPage.xaml.cs
│ │ │ └── NodeClasses.cs
│ │ ├── Hex
│ │ │ ├── Hexagon.cs
│ │ │ ├── HexBoardElement.cs
│ │ │ ├── HexHelper.cs
│ │ │ ├── HexPage.xaml
│ │ │ └── HexStuff.cs
│ │ ├── icon.ico
│ │ ├── InfoTextBoxPage.xaml
│ │ ├── Interactive3DPage.xaml
│ │ ├── Interactive3DPage.xaml.cs
│ │ ├── IntroductionPage.xaml
│ │ ├── KevinButton
│ │ │ ├── disabled.jpg
│ │ │ ├── down.jpg
│ │ │ ├── downleft.jpg
│ │ │ ├── downright.jpg
│ │ │ ├── KevinButtonPage.xaml
│ │ │ ├── left.jpg
│ │ │ ├── middle.jpg
│ │ │ ├── normal.jpg
│ │ │ ├── pressed.jpg
│ │ │ ├── right.jpg
│ │ │ ├── up.jpg
│ │ │ ├── upleft.jpg
│ │ │ └── upright.jpg
│ │ ├── ListPagerPage.xaml
│ │ ├── ListPagerPage.xaml.cs
│ │ ├── logo.png
│ │ ├── MainPage.xaml
│ │ ├── MainPage.xaml.cs
│ │ ├── MineSweeper
│ │ │ ├── MineFieldElement.cs
│ │ │ ├── MineSweeper.cs
│ │ │ ├── MineSweeperPage.xaml
│ │ │ └── MineSweeperPage.xaml.cs
│ │ ├── NotifyWorkerPage.xaml
│ │ ├── NotifyWorkerPage.xaml.cs
│ │ ├── NumericUpDownPage.xaml
│ │ ├── obj
│ │ │ └── Debug
│ │ │ └── TempPE
│ │ ├── OrgTree
│ │ │ ├── OrgData.cs
│ │ │ ├── OrgTreePage.xaml
│ │ │ ├── OrgTreePage.xaml.cs
│ │ │ └── OrgView.cs
│ │ ├── packages.config
│ │ ├── PixelLab.Wpf.Demo.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RadioButtonListPage.xaml
│ │ ├── ReorderListboxPage.xaml
│ │ ├── ReorderListboxPage.xaml.cs
│ │ ├── RevealPage.xaml
│ │ ├── Set
│ │ │ ├── SetBoardElement.cs
│ │ │ ├── SetCardDrawingFactory.cs
│ │ │ ├── Set.cs
│ │ │ ├── SetPage.xaml
│ │ │ └── SetPage.xaml.cs
│ │ ├── ShowElementPage.xaml
│ │ ├── ShowElementPage.xaml.cs
│ │ ├── TransitionPresenter
│ │ │ ├── star.png
│ │ │ ├── TransitionPresenterPage.xaml
│ │ │ └── TransitionPresenterPage.xaml.cs
│ │ ├── TreeMapPanelPage.xaml
│ │ ├── TreeMapPanelPage.xaml.cs
│ │ ├── TreeViewDoubleClickPage.xaml
│ │ ├── TreeViewDoubleClickPage.xaml.cs
│ │ ├── TreeViewHelperClasses
│ │ │ ├── DataTree.cs
│ │ │ ├── TreeViewDataItem.cs
│ │ │ ├── TreeViewHelperPage.xaml
│ │ │ └── TreeViewHelperPage.xaml.cs
│ │ ├── VisualTreeViewer
│ │ │ ├── VisualTreeItem.cs
│ │ │ ├── VisualTreeViewerPage.xaml
│ │ │ └── VisualTreeViewerPage.xaml.cs
│ │ ├── VSCopyToHtmlPage.xaml
│ │ ├── VSCopyToHtmlPage.xaml.cs
│ │ ├── XamlShirt.xaml
│ │ ├── ZapPage.xaml
│ │ └── ZapPage.xaml.cs
│ ├── Common
│ │ ├── BrushHelper.cs
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── PixelLab.Common.dll
│ │ │ │ ├── PixelLab.Common.pdb
│ │ │ │ ├── PixelLab.Core.dll
│ │ │ │ └── PixelLab.Core.pdb
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── PixelLab.Common.csproj.FileListAbsolute.txt
│ │ │ ├── PixelLab.Common.csprojResolveAssemblyReference.cache
│ │ │ ├── PixelLab.Common.dll
│ │ │ └── PixelLab.Common.pdb
│ │ ├── ColorHelper.cs
│ │ ├── CommandHelpers.cs
│ │ ├── CompositionTargetRenderingListening.cs
│ │ ├── DeadCommand.cs
│ │ ├── DebugTrace.cs
│ │ ├── DependencyPropHelper.cs
│ │ ├── EnumConverter.cs
│ │ ├── GeoHelper.cs
│ │ ├── HueConverter.cs
│ │ ├── ICommandProxy.cs
│ │ ├── IDynamicValue.cs
│ │ ├── Line.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ └── TempPE
│ │ ├── PageFlipper.cs
│ │ ├── PathWatcher.cs
│ │ ├── PixelLab.Common.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── RoundDoubleConverter.cs
│ │ ├── SimpleValueConverter.cs
│ │ └── TreeHelpers.cs
│ └── Core
│ ├── ActionOnDispose.cs
│ ├── _build
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── PixelLab.Core.dll
│ │ │ │ └── PixelLab.Core.pdb
│ │ │ └── Release
│ │ └── obj
│ │ ├── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── PixelLab.Core.csproj.FileListAbsolute.txt
│ │ │ ├── PixelLab.Core.csprojResolveAssemblyReference.cache
│ │ │ ├── PixelLab.Core.dll
│ │ │ └── PixelLab.Core.pdb
│ │ └── Release
│ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── CastList.cs
│ ├── Changeable.cs
│ ├── CollectionExtensions.cs
│ ├── CompositionHelpers.cs
│ ├── ConfigFactory.cs
│ ├── Contract.cs
│ ├── DataErrorHelper.cs
│ ├── DBUtil.cs
│ ├── Extensions.cs
│ ├── FilteredObservableEnumerable.cs
│ ├── FuncEnumerable.cs
│ ├── InstanceFactory.cs
│ ├── ListBase.cs
│ ├── ListReorderUtil.cs
│ ├── LockHelper.cs
│ ├── obj
│ │ ├── Debug
│ │ │ └── TempPE
│ │ └── Release
│ │ └── TempPE
│ ├── ObservableCollectionPlus.cs
│ ├── PixelLab.Core.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── PropertyChangeWatcher.cs
│ ├── ReaderWriterLockHelper.cs
│ ├── SortedObservableEnumerable.cs
│ ├── SortHelper.cs
│ ├── StreamHelpers.cs
│ ├── System
│ │ ├── DataErrorsChangedEventArgs.cs
│ │ └── INotifyDataErrorInfo.cs
│ ├── TypedDictionaryExtensions.cs
│ ├── Util.cs
│ ├── WeakEnumerable.cs
│ └── WrappedLock.cs
├── packages
│ ├── CommonServiceLocator.1.0
│ │ ├── CommonServiceLocator.1.0.nupkg
│ │ └── lib
│ │ ├── NET35
│ │ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ │ ├── Microsoft.Practices.ServiceLocation.pdb
│ │ │ └── Microsoft.Practices.ServiceLocation.XML
│ │ └── SL30
│ │ ├── Microsoft.Practices.ServiceLocation.dll
│ │ └── Microsoft.Practices.ServiceLocation.XML
│ ├── Prism.4.1.0.0
│ │ ├── lib
│ │ │ ├── NET40
│ │ │ │ ├── Microsoft.Expression.Interactions.dll
│ │ │ │ ├── Microsoft.Practices.Prism.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.xml
│ │ │ │ ├── Microsoft.Practices.Prism.xml
│ │ │ │ └── System.Windows.Interactivity.dll
│ │ │ ├── SL4
│ │ │ │ ├── Microsoft.Expression.Interactions.dll
│ │ │ │ ├── Microsoft.Practices.Prism.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.dll
│ │ │ │ ├── Microsoft.Practices.Prism.Interactivity.xml
│ │ │ │ ├── Microsoft.Practices.Prism.xml
│ │ │ │ └── System.Windows.Interactivity.dll
│ │ │ └── SL5
│ │ │ ├── Microsoft.Expression.Interactions.dll
│ │ │ ├── Microsoft.Practices.Prism.dll
│ │ │ ├── Microsoft.Practices.Prism.Interactivity.dll
│ │ │ ├── Microsoft.Practices.Prism.Interactivity.xml
│ │ │ ├── Microsoft.Practices.Prism.xml
│ │ │ └── System.Windows.Interactivity.dll
│ │ └── Prism.4.1.0.0.nupkg
│ └── repositories.config
├── PixelLab.BOT.nuspec
├── PixelLab.Common.nuspec
├── PixelLab.Core.nuspec
├── README.md
├── sl4
│ ├── Common
│ │ ├── ActualSizePropertyProxy.cs
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── CommandKeyMapper.cs
│ │ ├── KeyBinding.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── build.force
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── PixelLab.Common_SL4.csproj
│ │ ├── Properties
│ │ ├── SelectedItemsBehavior.cs
│ │ ├── Vector_SL.cs
│ │ ├── WebHelpers.cs
│ │ └── WrapPanel.cs
│ ├── Core
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── obj
│ │ │ └── Debug
│ │ │ └── TempPE
│ │ ├── PixelLab.Core_SL4.csproj
│ │ └── Properties
│ ├── SL4
│ │ ├── AsBigAsYouWantPanel.cs
│ │ ├── AsyncValue.cs
│ │ ├── AsyncValueLoadException.cs
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── FlipControl.g.i.cs
│ │ │ ├── GridLineControl.g.i.cs
│ │ │ ├── SpinningProgressControl.g.i.cs
│ │ │ └── Themes
│ │ ├── CollapseOnDisableBehavior.cs
│ │ ├── DiscreteSlider.cs
│ │ ├── DoubleClickBehavior.cs
│ │ ├── EditableTextBlock.cs
│ │ ├── FlipControl.xaml
│ │ ├── FlipControl.xaml.cs
│ │ ├── GridLineControl.xaml
│ │ ├── GridLineControl.xaml.cs
│ │ ├── Helpers_Phone.cs
│ │ ├── IAsyncValue.cs
│ │ ├── Images
│ │ │ ├── cross.png
│ │ │ ├── pencil.png
│ │ │ └── tick.png
│ │ ├── IsolatedStorage
│ │ │ └── IsolatedFileSystemInfo.cs
│ │ ├── LoadState.cs
│ │ ├── ModalControl.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── build.force
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── PanZoomControl.cs
│ │ ├── PixelLab.SL.csproj
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── ResourceHelpers.cs
│ │ ├── ScrollBehavior.cs
│ │ ├── SLExtentions.cs
│ │ ├── SpinningProgressControl.xaml
│ │ ├── SpinningProgressControl.xaml.cs
│ │ ├── SpriteButton.cs
│ │ ├── SpriteElement.cs
│ │ ├── StretchDirection.cs
│ │ ├── Themes
│ │ │ └── generic.xaml
│ │ └── Viewbox.cs
│ ├── SL4.Demo
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Assets
│ │ │ └── sprite.png
│ │ ├── _build
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── App.g.i.cs
│ │ │ ├── DemoHost.g.i.cs
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── DoubleClickBehaviorPage.g.i.cs
│ │ │ ├── EditableTextBlockPage.g.i.cs
│ │ │ ├── FlipControlPage.g.i.cs
│ │ │ ├── ModalControlPage.g.i.cs
│ │ │ ├── PanZoomPage.g.i.cs
│ │ │ ├── ScrollBehaviorPage.g.i.cs
│ │ │ ├── SpinningProgressControlPage.g.i.cs
│ │ │ ├── SpriteButtonPage.g.i.cs
│ │ │ └── WelcomePage.g.i.cs
│ │ ├── Core
│ │ ├── DemoHost.xaml
│ │ ├── DemoHost.xaml.cs
│ │ ├── DoubleClickBehaviorPage.xaml
│ │ ├── DoubleClickBehaviorPage.xaml.cs
│ │ ├── EditableTextBlockPage.xaml
│ │ ├── EditableTextBlockPage.xaml.cs
│ │ ├── FlipControlPage.xaml
│ │ ├── FlipControlPage.xaml.cs
│ │ ├── ModalControlPage.xaml
│ │ ├── ModalControlPage.xaml.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── build.force
│ │ │ └── TempPE
│ │ ├── packages.config
│ │ ├── PanZoomPage.xaml
│ │ ├── PanZoomPage.xaml.cs
│ │ ├── PixelLab.SL.Demo.csproj
│ │ ├── Properties
│ │ │ ├── AppManifest.xml
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── OutOfBrowserSettings.xml
│ │ ├── ScrollBehaviorPage.xaml
│ │ ├── ScrollBehaviorPage.xaml.cs
│ │ ├── SpinningProgressControlPage.xaml
│ │ ├── SpinningProgressControlPage.xaml.cs
│ │ ├── SpriteButtonPage.xaml
│ │ ├── SpriteButtonPage.xaml.cs
│ │ ├── WelcomePage.xaml
│ │ └── WelcomePage.xaml.cs
│ └── Test
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── AsyncValueTests.cs
│ ├── CollectionExtensionsTests.cs
│ ├── ConfigFactoryTests.cs
│ ├── ContractTests.cs
│ ├── EnumConverterTest.cs
│ ├── Helpers
│ │ ├── AssertPlus.cs
│ │ └── TestChangeable.cs
│ ├── ListReorderUtilTests.cs
│ ├── ModalControlTests.cs
│ ├── PixelLab.Test_SL.csproj
│ ├── Properties
│ │ ├── AppManifest.xml
│ │ ├── AssemblyInfo.cs
│ │ └── OutOfBrowserSettings.xml
│ ├── PropertyWatcherTest.cs
│ ├── SortHelperTests.cs
│ ├── WatcherTest.cs
│ └── WeakEnumerableTest.cs
├── sl5
│ ├── Common
│ │ ├── _build
│ │ │ └── bin
│ │ │ └── Debug
│ │ ├── obj
│ │ │ └── Debug
│ │ ├── packages.config
│ │ ├── PixelLab.Common_SL5.csproj
│ │ └── Properties
│ ├── Core
│ │ ├── _build
│ │ │ └── bin
│ │ │ └── Debug
│ │ ├── obj
│ │ │ └── Debug
│ │ ├── PixelLab.Core_SL5.csproj
│ │ └── Properties
│ └── SL5
│ ├── _build
│ │ └── bin
│ │ └── Debug
│ ├── Images
│ ├── IsolatedStorage
│ ├── obj
│ │ └── Debug
│ ├── packages.config
│ ├── PixelLab.SL5.csproj
│ ├── Properties
│ └── Themes
├── targets
│ ├── BuildShared.targets
│ ├── Contracts.targets
│ ├── NET4.targets
│ ├── SL4.targets
│ ├── SL5.targets
│ └── SL_shared.targets
└── XamlAssemblyInfo.cs
163 directories, 522 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论