在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Meridian音乐播放器:体验俄罗斯流行社交网络音乐

Meridian音乐播放器:体验俄罗斯流行社交网络音乐

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:5.37M
  • 下载次数:0
  • 浏览次数:8
  • 发布时间:2024-03-23
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】
Meridian是一款特别设计的音乐播放器,它让用户能够通过俄罗斯流行社交网络vk.com来聆听音乐。Meridian不仅仅是一个简单的音乐播放器,它还通过与echonest.com和last.fm等附加服务的交互,为用户带来了一系列高级功能:根据音乐类型、心情和个人口味推荐音乐,搜索艺术家和专辑,提供艺术家电台等。Meridian使用C#和WPF 4.5编写

【实例截图】
【核心代码】
文件清单
└── meridian-0b46d1f46add3092f50a9241e399585635cea089
    ├── LastFmLibPortable
    │   └── Trunk
    │       ├── app.config
    │       ├── Core
    │       │   ├── Album
    │       │   │   ├── LastFmAlbum.cs
    │       │   │   └── LastFmAlbumRequest.cs
    │       │   ├── Artist
    │       │   │   ├── LastFmArtist.cs
    │       │   │   └── LastFmArtistRequest.cs
    │       │   ├── Auth
    │       │   │   ├── LastFmAuthRequest.cs
    │       │   │   └── LastFmAuthResult.cs
    │       │   ├── Chart
    │       │   │   └── LastFmChartRequest.cs
    │       │   ├── CoreRequest.cs
    │       │   ├── Image
    │       │   │   └── LastFmImage.cs
    │       │   ├── LastFmErrorProcessor.cs
    │       │   ├── Tag
    │       │   │   └── LastFmTagRequest.cs
    │       │   ├── Track
    │       │   │   ├── LastFmTrack.cs
    │       │   │   └── LastFmTrackRequest.cs
    │       │   └── User
    │       │       └── LastFmUserRequest.cs
    │       ├── Error
    │       │   └── LastFmLoginException.cs
    │       ├── Extensions
    │       │   ├── CommonExtensions.cs
    │       │   └── StreamExtensions.cs
    │       ├── LastFmConst.cs
    │       ├── LastFM.cs
    │       ├── LastFmLibPortable.csproj
    │       ├── LastFmUtils.cs
    │       ├── project.json
    │       └── refs
    │           ├── Portable.Runtime.dll
    │           ├── Portable.Security.Cryptography.dll
    │           └── xBrainLab.Security.Cryptography.dll
    ├── LICENSE.txt
    ├── Meridian
    │   ├── App.config
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── Behaviours
    │   │   ├── AutoScrollToCurrentItemBehaviour.cs
    │   │   ├── FocusBehaviour.cs
    │   │   ├── TransitionBehaviour.cs
    │   │   └── VisibilityTransitionBehaviour.cs
    │   ├── Controls
    │   │   ├── BindablePasswordBox.cs
    │   │   ├── BusyIndicator.cs
    │   │   ├── ContentTransitionControl.xaml
    │   │   ├── ContentTransitionControl.xaml.cs
    │   │   ├── ExtendedListBox.cs
    │   │   ├── FlyoutContent.cs
    │   │   ├── FlyoutControl.xaml
    │   │   ├── FlyoutControl.xaml.cs
    │   │   ├── ImageTransitionControl.xaml
    │   │   ├── ImageTransitionControl.xaml.cs
    │   │   ├── LocalSearchControl.xaml
    │   │   ├── LocalSearchControl.xaml.cs
    │   │   ├── NotificationControl.xaml
    │   │   ├── NotificationControl.xaml.cs
    │   │   ├── PageBase.cs
    │   │   ├── PlayerControl.xaml
    │   │   ├── PlayerControl.xaml.cs
    │   │   ├── ShareBarControl.xaml
    │   │   ├── ShareBarControl.xaml.cs
    │   │   ├── TextBoxWithHint.cs
    │   │   ├── VirtualizingWrapPanel.cs
    │   │   ├── VolumeControl.xaml
    │   │   └── VolumeControl.xaml.cs
    │   ├── Converters
    │   │   ├── AlbumContextMenuVisibilityConverter.cs
    │   │   ├── AlbumListItemContainerSelector.cs
    │   │   ├── AudioTemplateSelector.cs
    │   │   ├── AudioTimeSpanConverter.cs
    │   │   ├── BooleanToValueConverter.cs
    │   │   ├── MainMenuGroupStyleSelector.cs
    │   │   └── SearchResultTemplateSelector.cs
    │   ├── Domain
    │   │   └── Settings.cs
    │   ├── Extensions
    │   │   ├── AudioExtensions.cs
    │   │   ├── CommonExtensions.cs
    │   │   ├── ListExtensions.cs
    │   │   └── SocketExtensions.cs
    │   ├── Helpers
    │   │   ├── AlbumCoversHelper.cs
    │   │   ├── ArtistImageHelper.cs
    │   │   ├── DateTimeConverter.cs
    │   │   ├── FilesHelper.cs
    │   │   ├── HotKeyManager.cs
    │   │   ├── ImageAsyncHelper.cs
    │   │   ├── LongRunningOperation.cs
    │   │   ├── Md5Helper.cs
    │   │   ├── NativeMethods.cs
    │   │   ├── NetworkHelper.cs
    │   │   └── StringHelper.cs
    │   ├── icon.ico
    │   ├── Layout
    │   │   ├── Controls
    │   │   │   ├── HeaderControl.xaml
    │   │   │   ├── HeaderControl.xaml.cs
    │   │   │   └── PageTabControl.cs
    │   │   ├── LayoutBase.cs
    │   │   ├── PageBase.cs
    │   │   ├── Templates
    │   │   │   ├── PageBaseTemplate.xaml
    │   │   │   └── TwoColumnPageLayoutTemplate.xaml
    │   │   └── TwoColumnPageLayout.cs
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── Meridian.csproj
    │   ├── Model
    │   │   ├── Account.cs
    │   │   ├── AudioAlbum.cs
    │   │   ├── AudioArtist.cs
    │   │   ├── Audio.cs
    │   │   ├── AudioPost.cs
    │   │   ├── ColorScheme.cs
    │   │   ├── ItemsResponse.cs
    │   │   ├── MainMenuItem.cs
    │   │   ├── NewsItemsResponse.cs
    │   │   ├── Recommendation.cs
    │   │   ├── SearchMenuItem.cs
    │   │   ├── Settings
    │   │   │   ├── SettingsEngine.cs
    │   │   │   ├── SettingsHotKey.cs
    │   │   │   └── SettingsLanguage.cs
    │   │   └── UIMode.cs
    │   ├── Properties
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── RemotePlay
    │   │   ├── RemotePlayService.cs
    │   │   ├── SimpleHttpRequest.cs
    │   │   ├── SimpleHttpResponse.cs
    │   │   ├── SimpleWebServer.cs
    │   │   └── web
    │   │       ├── img
    │   │       │   ├── light
    │   │       │   │   ├── volume_mute.png
    │   │       │   │   └── volume.png
    │   │       │   └── player.svg
    │   │       ├── index.html
    │   │       ├── js
    │   │       │   ├── index.js
    │   │       │   └── utils.js
    │   │       ├── lib
    │   │       │   ├── jquery-2.1.3.min.js
    │   │       │   ├── jquery-ui.min.js
    │   │       │   ├── jquery.ui.touch-punch.min.js
    │   │       │   └── svg4everybody.js
    │   │       └── styles
    │   │           ├── index.css
    │   │           └── player.css
    │   ├── Resources
    │   │   ├── Images
    │   │   │   ├── cover_default.png
    │   │   │   ├── echonest_logo_light.gif
    │   │   │   ├── lastfm_logo.gif
    │   │   │   ├── next_thumb.png
    │   │   │   ├── pause_thumb.png
    │   │   │   ├── play_thumb.png
    │   │   │   └── prev_thumb.png
    │   │   ├── Localization
    │   │   │   ├── ErrorResources.Designer.cs
    │   │   │   ├── ErrorResources.resx
    │   │   │   ├── ErrorResources.ru.resx
    │   │   │   ├── MainResources.Designer.cs
    │   │   │   ├── MainResources.resx
    │   │   │   └── MainResources.ru.resx
    │   │   ├── Styles
    │   │   │   ├── Animations.xaml
    │   │   │   ├── AudioControlStyles.xaml
    │   │   │   ├── ButtonStyles.xaml
    │   │   │   ├── CheckBoxStyles.xaml
    │   │   │   ├── ComboBoxStyles.xaml
    │   │   │   ├── ContextMenuStyles.xaml
    │   │   │   ├── DataTemplates.xaml
    │   │   │   ├── ExpanderStyles.xaml
    │   │   │   ├── Icons.xaml
    │   │   │   ├── ListBoxStyles.xaml
    │   │   │   ├── ProgressBarStyles.xaml
    │   │   │   ├── ScrollbarStyles.xaml
    │   │   │   ├── SliderStyles.xaml
    │   │   │   ├── Styles.xaml
    │   │   │   ├── TabControlStyles.xaml
    │   │   │   ├── TextBoxStyles.xaml
    │   │   │   └── WindowButtons.xaml
    │   │   └── Themes
    │   │       ├── Accents
    │   │       │   ├── Blue.xaml
    │   │       │   ├── Emerald.xaml
    │   │       │   ├── Magenta.xaml
    │   │       │   ├── Mango.xaml
    │   │       │   ├── Pink.xaml
    │   │       │   ├── Purple.xaml
    │   │       │   ├── Red.xaml
    │   │       │   ├── Sea.xaml
    │   │       │   └── Sky.xaml
    │   │       ├── Accent.xaml
    │   │       ├── Dark.xaml
    │   │       ├── Graphite.xaml
    │   │       └── Light.xaml
    │   ├── Services
    │   │   ├── AccountManager.cs
    │   │   ├── CacheService.cs
    │   │   ├── DataBaseService.cs
    │   │   ├── DataService.cs
    │   │   ├── HostService.cs
    │   │   ├── LoggingService.cs
    │   │   ├── Media
    │   │   │   ├── AudioService.cs
    │   │   │   └── Core
    │   │   │       ├── MediaPlayerBase.cs
    │   │   │       ├── NaudioMediaPlayer.cs
    │   │   │       ├── UwpMediaPlayer.cs
    │   │   │       └── WmpMediaPlayer.cs
    │   │   ├── Music
    │   │   │   ├── LocalMusicService.cs
    │   │   │   └── Repositories
    │   │   │       ├── LocalAlbumsRepository.cs
    │   │   │       ├── LocalArtistsRepository.cs
    │   │   │       └── LocalTracksRepository.cs
    │   │   ├── NotificationService.cs
    │   │   ├── ServiceLocator.cs
    │   │   └── UpdateService.cs
    │   ├── SQLiteAsync.cs
    │   ├── SQLite.cs
    │   ├── View
    │   │   ├── Compact
    │   │   │   ├── CompactLandscapeView.xaml
    │   │   │   ├── CompactLandscapeView.xaml.cs
    │   │   │   ├── CompactView.xaml
    │   │   │   └── CompactView.xaml.cs
    │   │   ├── Flyouts
    │   │   │   ├── AddSocietyFlyout.xaml
    │   │   │   ├── AddSocietyFlyout.xaml.cs
    │   │   │   ├── AddToAlbumView.xaml
    │   │   │   ├── AddToAlbumView.xaml.cs
    │   │   │   ├── CaptchaRequestView.xaml
    │   │   │   ├── CaptchaRequestView.xaml.cs
    │   │   │   ├── CommonErrorView.xaml
    │   │   │   ├── CommonErrorView.xaml.cs
    │   │   │   ├── CommonMessageView.xaml
    │   │   │   ├── CommonMessageView.xaml.cs
    │   │   │   ├── EditAlbumView.xaml
    │   │   │   ├── EditAlbumView.xaml.cs
    │   │   │   ├── EditAudioView.xaml
    │   │   │   ├── EditAudioView.xaml.cs
    │   │   │   ├── Local
    │   │   │   │   ├── MusicScanView.xaml
    │   │   │   │   └── MusicScanView.xaml.cs
    │   │   │   ├── LoginLastFmMessageView.xaml
    │   │   │   ├── LoginLastFmMessageView.xaml.cs
    │   │   │   ├── LoginLastFmView.xaml
    │   │   │   ├── LoginLastFmView.xaml.cs
    │   │   │   ├── LyricsView.xaml
    │   │   │   ├── LyricsView.xaml.cs
    │   │   │   ├── ShareView.xaml
    │   │   │   ├── ShareView.xaml.cs
    │   │   │   ├── TellFriendsRequestView.xaml
    │   │   │   ├── TellFriendsRequestView.xaml.cs
    │   │   │   ├── TellResultView.xaml
    │   │   │   ├── TellResultView.xaml.cs
    │   │   │   ├── WebValidationView.xaml
    │   │   │   └── WebValidationView.xaml.cs
    │   │   ├── Local
    │   │   │   ├── LocalAlbumView.xaml
    │   │   │   ├── LocalAlbumView.xaml.cs
    │   │   │   ├── LocalCollectionView.xaml
    │   │   │   └── LocalCollectionView.xaml.cs
    │   │   ├── Main
    │   │   │   ├── FeedView.xaml
    │   │   │   ├── FeedView.xaml.cs
    │   │   │   ├── LoginView.xaml
    │   │   │   ├── LoginView.xaml.cs
    │   │   │   ├── MusicView.xaml
    │   │   │   ├── MusicView.xaml.cs
    │   │   │   ├── NowPlayingView.xaml
    │   │   │   ├── NowPlayingView.xaml.cs
    │   │   │   ├── PopularAudioView.xaml
    │   │   │   ├── PopularAudioView.xaml.cs
    │   │   │   ├── RecommendationsView.xaml
    │   │   │   └── RecommendationsView.xaml.cs
    │   │   ├── People
    │   │   │   ├── FriendsAudioView.xaml
    │   │   │   ├── FriendsAudioView.xaml.cs
    │   │   │   ├── FriendsView.xaml
    │   │   │   ├── FriendsView.xaml.cs
    │   │   │   ├── SocietiesView.xaml
    │   │   │   ├── SocietiesView.xaml.cs
    │   │   │   ├── SocietyAudioView.xaml
    │   │   │   ├── SocietyAudioView.xaml.cs
    │   │   │   ├── SubscriptionsView.xaml
    │   │   │   └── SubscriptionsView.xaml.cs
    │   │   ├── Search
    │   │   │   ├── AlbumView.xaml
    │   │   │   ├── AlbumView.xaml.cs
    │   │   │   ├── ArtistAlbumsView.xaml
    │   │   │   ├── ArtistAlbumsView.xaml.cs
    │   │   │   ├── ArtistAudioView.xaml
    │   │   │   ├── ArtistAudioView.xaml.cs
    │   │   │   ├── ArtistView.xaml
    │   │   │   ├── ArtistView.xaml.cs
    │   │   │   ├── SearchResultsView.xaml
    │   │   │   └── SearchResultsView.xaml.cs
    │   │   ├── Settings
    │   │   │   ├── SettingsAboutView.xaml
    │   │   │   ├── SettingsAboutView.xaml.cs
    │   │   │   ├── SettingsAccountsView.xaml
    │   │   │   ├── SettingsAccountsView.xaml.cs
    │   │   │   ├── SettingsHotkeysView.xaml
    │   │   │   ├── SettingsHotkeysView.xaml.cs
    │   │   │   ├── SettingsRemotePlayView.xaml
    │   │   │   ├── SettingsRemotePlayView.xaml.cs
    │   │   │   ├── SettingsUIView.xaml
    │   │   │   ├── SettingsUIView.xaml.cs
    │   │   │   ├── SettingsUpdatesView.xaml
    │   │   │   ├── SettingsUpdatesView.xaml.cs
    │   │   │   ├── SettingsView.xaml
    │   │   │   └── SettingsView.xaml.cs
    │   │   ├── TrackNotifcationView.xaml
    │   │   └── TrackNotifcationView.xaml.cs
    │   └── ViewModel
    │       ├── Flyouts
    │       │   ├── EditAudioViewModel.cs
    │       │   ├── LoginLastFmViewModel.cs
    │       │   ├── LyricsViewModel.cs
    │       │   └── ShareViewModel.cs
    │       ├── Local
    │       │   ├── LocalAlbumViewModel.cs
    │       │   └── LocalMusicViewModel.cs
    │       ├── Main
    │       │   ├── FeedViewModel.cs
    │       │   ├── LoginViewModel.cs
    │       │   ├── MusicViewModel.cs
    │       │   ├── NowPlayingViewModel.cs
    │       │   ├── PopularAudioViewModel.cs
    │       │   └── RecommendationsViewModel.cs
    │       ├── MainViewModel.cs
    │       ├── Messages
    │       │   ├── CurrentAudioChangedMessage.cs
    │       │   ├── LocalRepositoryUpdatedMessage.cs
    │       │   ├── LoginMessage.cs
    │       │   ├── PlayerPositionChangedMessage.cs
    │       │   ├── PlayStateChangedMessage.cs
    │       │   └── UserTracksChangedMessage.cs
    │       ├── People
    │       │   ├── FriendAudioViewModel.cs
    │       │   ├── FriendsViewModel.cs
    │       │   ├── SocietiesViewModel.cs
    │       │   ├── SocietyAudioViewModel.cs
    │       │   └── SubscriptionsViewModel.cs
    │       ├── Search
    │       │   ├── AlbumViewModel.cs
    │       │   ├── ArtistViewModel.cs
    │       │   └── SearchViewModel.cs
    │       ├── SettingsViewModel.cs
    │       ├── ViewModelBase.cs
    │       └── ViewModelLocator.cs
    ├── Meridian.Core
    │   └── Services
    │       └── AccountsService.cs
    ├── MeridianDesktop.sln
    ├── Neptune
    │   └── Trunk
    │       ├── Neptune.Base
    │       │   ├── app.config
    │       │   ├── Collections
    │       │   │   └── IAsyncCollection.cs
    │       │   ├── Extensions
    │       │   │   ├── CommonExtensions.cs
    │       │   │   └── StreamExtensions.cs
    │       │   ├── Helpers
    │       │   │   └── TaskQueue.cs
    │       │   ├── Messages
    │       │   │   ├── GoHomeMessage.cs
    │       │   │   └── NavigateToPageMessage.cs
    │       │   ├── Neptune.Base.csproj
    │       │   ├── project.json
    │       │   ├── Properties
    │       │   │   └── AssemblyInfo.cs
    │       │   ├── Storage
    │       │   │   └── IFileStorage.cs
    │       │   └── View
    │       │       └── IVisualViewModel.cs
    │       ├── Neptune.Desktop
    │       │   ├── Behaviours
    │       │   │   ├── IgnoreMouseWheelBehavior.cs
    │       │   │   ├── TriggerTransitionBehaviour.cs
    │       │   │   ├── UpdateTextBindingOnPropertyChanged.cs
    │       │   │   └── VisiblityTransitionBehaviour.cs
    │       │   ├── Converters
    │       │   │   ├── BooleanToObjectConverter.cs
    │       │   │   ├── BooleanToVisibilityConverter.cs
    │       │   │   ├── InvertBooleanConverter.cs
    │       │   │   ├── NullToBooleanConverter.cs
    │       │   │   ├── NullToVisibilityConverter.cs
    │       │   │   ├── StringToUpperConverter.cs
    │       │   │   └── TimeSpanConverter.cs
    │       │   ├── Domain
    │       │   │   └── AppSettings.cs
    │       │   ├── Extensions
    │       │   │   └── VisualTreeHelperExtensions.cs
    │       │   ├── Neptune.Desktop.csproj
    │       │   └── Storage
    │       │       └── FileStorage.cs
    │       └── Neptune.UI.Desktop
    │           ├── Behaviours
    │           │   ├── IgnoreMouseWheelBehavior.cs
    │           │   ├── TriggerTransitionBehaviour.cs
    │           │   ├── UpdateTextBindingOnPropertyChanged.cs
    │           │   └── VisiblityTransitionBehaviour.cs
    │           ├── Converters
    │           │   ├── BooleanToObjectConverter.cs
    │           │   ├── BooleanToVisibilityConverter.cs
    │           │   ├── InvertBooleanConverter.cs
    │           │   ├── NullToBooleanConverter.cs
    │           │   ├── NullToVisibilityConverter.cs
    │           │   ├── StringToUpperConverter.cs
    │           │   └── TimeSpanConverter.cs
    │           ├── Extensions
    │           │   └── VisualTreeHelperExtensions.cs
    │           ├── Neptune.UI.Desktop.csproj
    │           ├── packages.config
    │           └── Properties
    │               └── AssemblyInfo.cs
    ├── packages
    │   ├── repositories.config
    │   └── Unofficial.Blend.Interactivity.1.0.0
    │       ├── lib
    │       │   ├── net40
    │       │   │   ├── de
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── en
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── es
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── fr
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── it
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ja
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ko
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── Microsoft.Expression.Interactions.dll
    │       │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   ├── System.Windows.Interactivity.dll
    │       │   │   ├── System.Windows.Interactivity.xml
    │       │   │   ├── zh-Hans
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   └── zh-Hant
    │       │   │       ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │       ├── Microsoft.Expression.Interactions.xml
    │       │   │       ├── System.Windows.Interactivity.resources.dll
    │       │   │       └── System.Windows.Interactivity.xml
    │       │   ├── net45
    │       │   │   ├── de
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── en
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── es
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── fr
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── it
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ja
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ko
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── Microsoft.Expression.Interactions.dll
    │       │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   ├── ru
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── System.Windows.Interactivity.dll
    │       │   │   ├── System.Windows.Interactivity.xml
    │       │   │   ├── zh-Hans
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   └── zh-Hant
    │       │   │       ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │       ├── Microsoft.Expression.Interactions.xml
    │       │   │       ├── System.Windows.Interactivity.resources.dll
    │       │   │       └── System.Windows.Interactivity.xml
    │       │   ├── sl40
    │       │   │   ├── de
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── en
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── es
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── fr
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── it
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ja
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ko
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── Microsoft.Expression.Interactions.dll
    │       │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   ├── System.Windows.Interactivity.dll
    │       │   │   ├── System.Windows.Interactivity.xml
    │       │   │   ├── zh-Hans
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   └── zh-Hant
    │       │   │       ├── Microsoft.Expression.Interactions.xml
    │       │   │       └── System.Windows.Interactivity.xml
    │       │   ├── sl4-wp71
    │       │   │   ├── de
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── en
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── es
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── fr
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── it
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ja
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ko
    │       │   │   │   ├── Microsoft.Expression.Controls.xml
    │       │   │   │   ├── Microsoft.Expression.Drawing.xml
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── Microsoft.Expression.Interactions.dll
    │       │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   ├── System.Windows.Interactivity.dll
    │       │   │   ├── System.Windows.Interactivity.xml
    │       │   │   ├── zh-Hans
    │       │   │   │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   ├── System.Windows.Interactivity.resources.dll
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   └── zh-Hant
    │       │   │       ├── Microsoft.Expression.Interactions.resources.dll
    │       │   │       ├── Microsoft.Expression.Interactions.xml
    │       │   │       ├── System.Windows.Interactivity.resources.dll
    │       │   │       └── System.Windows.Interactivity.xml
    │       │   ├── sl50
    │       │   │   ├── de
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── en
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── es
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── fr
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── it
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ja
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── ko
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── Microsoft.Expression.Interactions.dll
    │       │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   ├── ru
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   ├── System.Windows.Interactivity.dll
    │       │   │   ├── System.Windows.Interactivity.xml
    │       │   │   ├── zh-Hans
    │       │   │   │   ├── Microsoft.Expression.Controls.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Controls.xml
    │       │   │   │   ├── Microsoft.Expression.Drawing.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Drawing.xml
    │       │   │   │   ├── Microsoft.Expression.Effects.resources.dll
    │       │   │   │   ├── Microsoft.Expression.Effects.xml
    │       │   │   │   ├── Microsoft.Expression.Interactions.xml
    │       │   │   │   └── System.Windows.Interactivity.xml
    │       │   │   └── zh-Hant
    │       │   │       ├── Microsoft.Expression.Interactions.xml
    │       │   │       └── System.Windows.Interactivity.xml
    │       │   └── wp8
    │       │       ├── de
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── en
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── es
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── fr
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── it
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── ja
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── ko
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── Microsoft.Expression.Interactions.dll
    │       │       ├── ru
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       ├── System.Windows.Interactivity.dll
    │       │       ├── zh-Hans
    │       │       │   ├── Microsoft.Expression.Interactions.resources.dll
    │       │       │   ├── Microsoft.Expression.Interactions.xml
    │       │       │   ├── System.Windows.Interactivity.resources.dll
    │       │       │   └── System.Windows.Interactivity.xml
    │       │       └── zh-Hant
    │       │           ├── Microsoft.Expression.Interactions.resources.dll
    │       │           ├── Microsoft.Expression.Interactions.xml
    │       │           ├── System.Windows.Interactivity.resources.dll
    │       │           └── System.Windows.Interactivity.xml
    │       └── Unofficial.Blend.Interactivity.1.0.0.nupkg
    ├── README.md
    ├── refs
    │   ├── GongSolutions.Wpf.DragDrop.dll
    │   └── GongSolutions.Wpf.DragDrop.XML
    └── VkLib

153 directories, 575 files

标签:

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警