在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → c#下载工具源码

c#下载工具源码

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:2.74M
  • 下载次数:4
  • 浏览次数:28
  • 发布时间:2023-11-28
  • 实例类别:C#语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 工具 源码 下载 C#

实例介绍

【实例简介】c#下载工具源码,是几个爱好.net的开发人员开发的

【实例截图】

from clipboard

【核心代码】

.
├── IReaper
│   ├── DownloadTest
│   │   ├── AuthoringTests.txt
│   │   ├── DownloadTest.csproj
│   │   ├── DownloadTest.csproj.vspscc
│   │   ├── FileTransferManagerTest.cs
│   │   ├── LoadTest1.loadtest
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── VSCodeGenAccessors.cs
│   │   └── WWEManagerTest.cs
│   ├── IReaper.Download
│   │   ├── CourseData
│   │   │   ├── Course.cs
│   │   │   ├── CourseDataManager.cs
│   │   │   ├── CourseRecordStorage.cs
│   │   │   ├── CourseXmlParser.cs
│   │   │   ├── CoursesCollection.cs
│   │   │   ├── HISTORY.TXT
│   │   │   ├── ICourseView.cs
│   │   │   └── InfoXMLParser.cs
│   │   ├── FileData
│   │   │   ├── CourseFileData.cs
│   │   │   ├── CourseFileDataCollection.cs
│   │   │   ├── CourseFileDataManager.cs
│   │   │   ├── CourseFileDataStorage.cs
│   │   │   ├── FileType.cs
│   │   │   ├── ICourseFileView.cs
│   │   │   └── RunningCourseFileDataCollection.cs
│   │   ├── FileUtils
│   │   │   ├── FileTransferManager.cs
│   │   │   ├── OperationType.cs
│   │   │   └── Utils.cs
│   │   ├── IReaper.Download.csproj
│   │   ├── IReaper.Download.csproj.vspscc
│   │   ├── Initializer
│   │   │   ├── AbstractInitTask.cs
│   │   │   ├── CheckInfoXMLTask.cs
│   │   │   ├── CheckUniqueUserIDTask.cs
│   │   │   ├── IInitializable.cs
│   │   │   ├── InitilizeDownloadEngineTask.cs
│   │   │   ├── LoadPersistencyCourseDataTask.cs
│   │   │   └── RestoreOldRecordTask.cs
│   │   ├── Net
│   │   │   └── NetworkManager.cs
│   │   ├── PathManager
│   │   │   ├── IManager.cs
│   │   │   ├── Manager.cs
│   │   │   ├── ManualPathManager.cs
│   │   │   ├── MonthPathManager.cs
│   │   │   ├── PathPolicyType.cs
│   │   │   ├── PlainPathManager.cs
│   │   │   ├── SeriesPathManager.cs
│   │   │   ├── SpeakerPathManager.cs
│   │   │   └── TechnologyPathManager.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── StringResources.Designer.cs
│   │   │   ├── StringResources.en.Designer.cs
│   │   │   ├── StringResources.en.resx
│   │   │   ├── StringResources.resx
│   │   │   ├── StringResources.zh-CHS.Designer.cs
│   │   │   └── StringResources.zh-CHS.resx
│   │   ├── Running
│   │   │   ├── CourseFileWorker.cs
│   │   │   ├── DownloadEngine.cs
│   │   │   ├── HISTORY.TXT
│   │   │   ├── Running.cd
│   │   │   └── WorkerThread.cs
│   │   ├── SortCompare.cs
│   │   ├── SortableBindingList.cs
│   │   ├── app.config
│   │   └── ireaper.pfx
│   ├── IReaper.Recovery
│   │   ├── Course.cs
│   │   ├── CourseDataManager.cs
│   │   ├── CourseFileData.cs
│   │   ├── CourseFileDataCollection.cs
│   │   ├── IReaper.Recovery.csproj
│   │   ├── IReaper.Recovery.csproj.vspscc
│   │   ├── PreviousRecordLoader.cs
│   │   ├── Program.cs
│   │   ├── ProgressFileDialogBase.Designer.cs
│   │   ├── ProgressFileDialogBase.cs
│   │   ├── ProgressFileDialogBase.resx
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   └── ireaper.pfx
│   ├── IReaper.sln
│   ├── IReaper.vssscc
│   ├── IReaper1.vsmdi
│   ├── IReaperSetup
│   │   ├── IReaperSetup.vdproj
│   │   └── IReaperSetup.vdproj.vspscc
│   ├── NewsComponents
│   │   ├── AssemblyInfo.cs
│   │   ├── Collections
│   │   │   ├── CategoriesCollection.cs
│   │   │   ├── FeedColumnLayoutCollection.cs
│   │   │   ├── FeedsCollection.cs
│   │   │   └── Tst
│   │   │       ├── TstDictionaries.cs
│   │   │       ├── TstDictionary.cs
│   │   │       ├── TstDictionaryEntry.cs
│   │   │       ├── TstDictionaryEntryEventArgs.cs
│   │   │       ├── TstDictionaryEnumerator.cs
│   │   │       ├── TstSynchronizedDictionary.cs
│   │   │       └── TstTraverser.cs
│   │   ├── Core
│   │   │   ├── NewsHandler.cs
│   │   │   └── NewsItem.cs
│   │   ├── Feed
│   │   │   ├── FeedInfo.cs
│   │   │   ├── RssLocater.cs
│   │   │   ├── RssParser.cs
│   │   │   └── feeds.cs
│   │   ├── Net
│   │   │   ├── AsyncWebRequest.cs
│   │   │   ├── AutomaticProxy.cs
│   │   │   ├── RequestExceptions.cs
│   │   │   ├── RequestParameter.cs
│   │   │   ├── RequestState.cs
│   │   │   └── RequestThread.cs
│   │   ├── NewsComponents.csproj
│   │   ├── NewsComponents.csproj.vspscc
│   │   ├── ProfilerHelper.cs
│   │   ├── RelationCosmos
│   │   │   ├── Collections
│   │   │   │   ├── RelationHRefDictionary.cs
│   │   │   │   ├── RelationList.cs
│   │   │   │   ├── RelationLists.cs
│   │   │   │   ├── Relations.cs
│   │   │   │   ├── SortedRelations.cs
│   │   │   │   └── StringTable.cs
│   │   │   ├── IRelationCosmos.cs
│   │   │   ├── RelationBase.cs
│   │   │   ├── RelationCosmos.cs
│   │   │   ├── RelationCosmos2.cs
│   │   │   └── RelationCosmos3.cs
│   │   ├── Resources
│   │   │   ├── Resource.cs
│   │   │   ├── RssComponentsText.resx
│   │   │   ├── RssComponentsText.zh-CHS.resx
│   │   │   ├── feedImportFilters.OCS.xslt
│   │   │   ├── feedImportFilters.OPML.xslt
│   │   │   ├── feedImportFilters.SIAM.xslt
│   │   │   ├── feedListSchema.xsd
│   │   │   └── feedListSchema.xsx
│   │   ├── Search
│   │   │   ├── BooleanSearch
│   │   │   │   ├── FileDocument.cs
│   │   │   │   ├── IDocument.cs
│   │   │   │   ├── QueryBuilder.cs
│   │   │   │   ├── QueryNode.cs
│   │   │   │   ├── QueryTree.cs
│   │   │   │   └── XMLDocument.cs
│   │   │   └── RssSearch.cs
│   │   ├── Storage
│   │   │   ├── CacheManager.cs
│   │   │   └── FileCacheManager.cs
│   │   ├── Threading
│   │   │   ├── BinaryHeap.cs
│   │   │   ├── PriorityQueue.cs
│   │   │   ├── PriorityThread.cs
│   │   │   ├── PriorityThreadPool.cs
│   │   │   └── Semaphore.cs
│   │   ├── Utils
│   │   │   ├── CryptHelper.cs
│   │   │   ├── DateTimeExt.cs
│   │   │   ├── FileHelper.cs
│   │   │   ├── HtmlHelper.cs
│   │   │   ├── ImportFilter.cs
│   │   │   ├── RssHelper.cs
│   │   │   ├── SimpleHyperLink.cs
│   │   │   ├── StringHelper.cs
│   │   │   └── XPathNavigators.cs
│   │   └── ireaper.pfx
│   ├── RssBandit.AppServices
│   │   ├── AppServices.csproj
│   │   ├── AppServices.csproj.vspscc
│   │   ├── AssemblyInfo.cs
│   │   ├── Core
│   │   │   ├── CommonInterfaces.cs
│   │   │   ├── EventsAndDelegates.cs
│   │   │   ├── ICoreApplication.cs
│   │   │   ├── IFeedDetails.cs
│   │   │   ├── INewsItem.cs
│   │   │   ├── INntpServerDefinition.cs
│   │   │   ├── ISearchEngine.cs
│   │   │   ├── IUserIdentity.cs
│   │   │   ├── IUserPreferences.cs
│   │   │   ├── NewsComponentEnums.cs
│   │   │   └── RssBanditEnums.cs
│   │   ├── CoreData.cs
│   │   ├── NotifiedDictionary.cs
│   │   ├── Properties
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── VersionInfo.cs
│   │   ├── app.config
│   │   └── ireaper.pfx
│   ├── SharpZiplib
│   │   ├── AssemblyInfo.cs
│   │   ├── BZip2
│   │   │   ├── BZip2.cs
│   │   │   ├── BZip2Constants.cs
│   │   │   ├── BZip2Exception.cs
│   │   │   ├── BZip2InputStream.cs
│   │   │   └── BZip2OutputStream.cs
│   │   ├── Checksums
│   │   │   ├── Adler32.cs
│   │   │   ├── CRC32.cs
│   │   │   ├── IChecksum.cs
│   │   │   └── StrangeCRC.cs
│   │   ├── Core
│   │   │   ├── FileSystemScanner.cs
│   │   │   ├── INameTransform.cs
│   │   │   ├── IScanFilter.cs
│   │   │   ├── NameFilter.cs
│   │   │   ├── PathFilter.cs
│   │   │   └── StreamUtils.cs
│   │   ├── Encryption
│   │   │   └── PkzipClassic.cs
│   │   ├── GZip
│   │   │   ├── GZIPConstants.cs
│   │   │   ├── GZipException.cs
│   │   │   ├── GzipInputStream.cs
│   │   │   └── GzipOutputStream.cs
│   │   ├── ICSharpCode.SharpZLib.csproj
│   │   ├── ICSharpCode.SharpZLib.csproj.vspscc
│   │   ├── Main.cs
│   │   ├── SharpZipBaseException.cs
│   │   ├── Tar
│   │   │   ├── InvalidHeaderException.cs
│   │   │   ├── TarArchive.cs
│   │   │   ├── TarBuffer.cs
│   │   │   ├── TarEntry.cs
│   │   │   ├── TarException.cs
│   │   │   ├── TarHeader.cs
│   │   │   ├── TarInputStream.cs
│   │   │   └── TarOutputStream.cs
│   │   ├── Zip
│   │   │   ├── Compression
│   │   │   │   ├── Deflater.cs
│   │   │   │   ├── DeflaterConstants.cs
│   │   │   │   ├── DeflaterEngine.cs
│   │   │   │   ├── DeflaterHuffman.cs
│   │   │   │   ├── DeflaterPending.cs
│   │   │   │   ├── Inflater.cs
│   │   │   │   ├── InflaterDynHeader.cs
│   │   │   │   ├── InflaterHuffmanTree.cs
│   │   │   │   ├── PendingBuffer.cs
│   │   │   │   └── Streams
│   │   │   │       ├── DeflaterOutputStream.cs
│   │   │   │       ├── InflaterInputStream.cs
│   │   │   │       ├── OutputWindow.cs
│   │   │   │       └── StreamManipulator.cs
│   │   │   ├── FastZip.cs
│   │   │   ├── IEntryFactory.cs
│   │   │   ├── ZipConstants.cs
│   │   │   ├── ZipEntry.cs
│   │   │   ├── ZipEntryFactory.cs
│   │   │   ├── ZipException.cs
│   │   │   ├── ZipExtraData.cs
│   │   │   ├── ZipFile.cs
│   │   │   ├── ZipHelperStream.cs
│   │   │   ├── ZipInputStream.cs
│   │   │   ├── ZipNameTransform.cs
│   │   │   └── ZipOutputStream.cs
│   │   └── ireaper.pfx
│   ├── WinFormsUI
│   │   ├── Docking
│   │   │   ├── AutoHideStripBase.cs
│   │   │   ├── DockAreasEditor.cs
│   │   │   ├── DockContent.cs
│   │   │   ├── DockContentCollection.cs
│   │   │   ├── DockContentEventArgs.cs
│   │   │   ├── DockContentHandler.cs
│   │   │   ├── DockOutlineBase.cs
│   │   │   ├── DockPane.SplitterControl.cs
│   │   │   ├── DockPane.cs
│   │   │   ├── DockPaneCaptionBase.cs
│   │   │   ├── DockPaneCollection.cs
│   │   │   ├── DockPaneStripBase.cs
│   │   │   ├── DockPanel.AutoHideWindow.cs
│   │   │   ├── DockPanel.DockDragHandler.cs
│   │   │   ├── DockPanel.DragHandler.cs
│   │   │   ├── DockPanel.FocusManager.cs
│   │   │   ├── DockPanel.MdiClientController.cs
│   │   │   ├── DockPanel.Persistor.cs
│   │   │   ├── DockPanel.SplitterDragHandler.cs
│   │   │   ├── DockPanel.cs
│   │   │   ├── DockPanelExtender.cs
│   │   │   ├── DockWindow.SplitterControl.cs
│   │   │   ├── DockWindow.cs
│   │   │   ├── DockWindowCollection.cs
│   │   │   ├── DragForm.cs
│   │   │   ├── DummyControl.cs
│   │   │   ├── Enums.cs
│   │   │   ├── FloatWindow.cs
│   │   │   ├── FloatWindowCollection.cs
│   │   │   ├── Helpers
│   │   │   │   ├── DockHelper.cs
│   │   │   │   ├── DrawHelper.cs
│   │   │   │   ├── ResourceHelper.cs
│   │   │   │   └── Win32Helper.cs
│   │   │   ├── InertButtonBase.cs
│   │   │   ├── Interfaces.cs
│   │   │   ├── Localization.cs
│   │   │   ├── Measures.cs
│   │   │   ├── NestedDockingStatus.cs
│   │   │   ├── NestedPaneCollection.cs
│   │   │   ├── Resources
│   │   │   │   ├── DockIndicator_PaneDiamond.bmp
│   │   │   │   ├── DockIndicator_PaneDiamond_Bottom.bmp
│   │   │   │   ├── DockIndicator_PaneDiamond_Hotspot.bmp
│   │   │   │   ├── DockIndicator_PaneDiamond_HotspotIndex.bmp
│   │   │   │   ├── DockIndicator_PaneDiamond_Left.bmp
│   │   │   │   ├── DockIndicator_PaneDiamond_Right.bmp
│   │   │   │   ├── DockIndicator_PaneDiamond_Top.bmp
│   │   │   │   ├── DockIndicator_PanelBottom.bmp
│   │   │   │   ├── DockIndicator_PanelBottom_Active.bmp
│   │   │   │   ├── DockIndicator_PanelFill.bmp
│   │   │   │   ├── DockIndicator_PanelFill_Active.bmp
│   │   │   │   ├── DockIndicator_PanelLeft.bmp
│   │   │   │   ├── DockIndicator_PanelLeft_Active.bmp
│   │   │   │   ├── DockIndicator_PanelRight.bmp
│   │   │   │   ├── DockIndicator_PanelRight_Active.bmp
│   │   │   │   ├── DockIndicator_PanelTop.bmp
│   │   │   │   ├── DockIndicator_PanelTop_Active.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide0.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide1.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide2.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide3.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide4.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide5.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide6.bmp
│   │   │   │   ├── DockPaneCaption_AutoHide7.bmp
│   │   │   │   ├── DockPaneCaption_Close0.bmp
│   │   │   │   ├── DockPaneCaption_Close1.bmp
│   │   │   │   ├── DockPaneCaption_Close2.bmp
│   │   │   │   ├── DockPaneCaption_Close3.bmp
│   │   │   │   ├── DockPaneCaption_Options0.bmp
│   │   │   │   ├── DockPaneCaption_Options1.bmp
│   │   │   │   ├── DockPaneCaption_Options2.bmp
│   │   │   │   ├── DockPaneCaption_Options3.bmp
│   │   │   │   ├── DockPaneStrip_CloseActive.bmp
│   │   │   │   ├── DockPaneStrip_CloseInactive.bmp
│   │   │   │   ├── DockPaneStrip_WindowListActive.bmp
│   │   │   │   ├── DockPaneStrip_WindowListActiveOverflow.bmp
│   │   │   │   ├── DockPaneStrip_WindowListInactive.bmp
│   │   │   │   ├── DockPaneStrip_WindowListInactiveOverflow.bmp
│   │   │   │   ├── DockPanel.bmp
│   │   │   │   └── Dockindicator_PaneDiamond_Fill.bmp
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── SplitterBase.cs
│   │   │   ├── Strings.Designer.cs
│   │   │   ├── Strings.resx
│   │   │   ├── VS2005AutoHideStrip.cs
│   │   │   ├── VS2005DockPaneCaption.cs
│   │   │   ├── VS2005DockPaneStrip.cs
│   │   │   ├── VisibleNestedPaneCollection.cs
│   │   │   └── Win32
│   │   │       ├── Enums.cs
│   │   │       └── NativeMethods.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── WinFormsUI.csproj
│   │   ├── WinFormsUI.csproj.vspscc
│   │   ├── ireaper.pfx
│   │   └── license.txt
│   ├── iReaper
│   │   ├── AboutForm.Designer.cs
│   │   ├── AboutForm.cs
│   │   ├── AboutForm.resx
│   │   ├── BaseControl
│   │   │   ├── RightClickableDataGridView.Designer.cs
│   │   │   └── RightClickableDataGridView.cs
│   │   ├── Browser
│   │   │   ├── BrowserExtendedNavigatingEventArgs.cs
│   │   │   ├── BrowserManager.cs
│   │   │   ├── DWebBrowserEvents2.cs
│   │   │   ├── ExtendedWebBrowser.Designer.cs
│   │   │   ├── ExtendedWebBrowser.cs
│   │   │   ├── ExtendedWebBrowser.resx
│   │   │   ├── IWebBrowser2.cs
│   │   │   ├── NativeMethods.cs
│   │   │   ├── TabContextMenu.Designer.cs
│   │   │   ├── TabContextMenu.cs
│   │   │   ├── UrlContext.cs
│   │   │   ├── iReaperBrowserForm.Designer.cs
│   │   │   ├── iReaperBrowserForm.cs
│   │   │   ├── iReaperBrowserForm.resx
│   │   │   ├── iReaperBrowserForm.zh-CHS.resx
│   │   │   ├── iReaperWebBrowser.Designer.cs
│   │   │   ├── iReaperWebBrowser.cs
│   │   │   └── iReaperWebBrowser.resx
│   │   ├── Category
│   │   │   ├── IVector.cs
│   │   │   └── IWebcastNode.cs
│   │   ├── Command
│   │   │   ├── CommandBase.cs
│   │   │   ├── CommandManager.cs
│   │   │   ├── DownloadFileCommand.cs
│   │   │   ├── GetRssFeedFromNetCommand.cs
│   │   │   ├── ImportFileCommand.cs
│   │   │   ├── OpenAuthenticatedRegistrationCommand.cs
│   │   │   ├── OpenFileCommand.cs
│   │   │   ├── OpenOnDemandVideo.cs
│   │   │   ├── PauseDownloadCommand.cs
│   │   │   ├── RefershTreeNodeCommand.cs
│   │   │   ├── RemoveFileCommand.cs
│   │   │   ├── RemoveRssFeed.cs
│   │   │   ├── RevertRemindCommand.cs
│   │   │   ├── ShutDownCommand.cs
│   │   │   ├── SynchorizeCourseDataCommand.cs
│   │   │   ├── TransferFileCommand.cs
│   │   │   └── UpdateRSSFeedCommand.cs
│   │   ├── CommonGui
│   │   │   ├── BrowserToolStrip.Designer.cs
│   │   │   ├── BrowserToolStrip.cs
│   │   │   ├── BrowserToolStrip.resx
│   │   │   ├── BrowserToolStrip.zh-CHS.resx
│   │   │   ├── ButtonStatuMonitor.cs
│   │   │   ├── CourseViewToolStrip.Designer.cs
│   │   │   ├── CourseViewToolStrip.cs
│   │   │   ├── CourseViewToolStrip.resx
│   │   │   ├── CourseViewToolStrip.zh-CHS.resx
│   │   │   ├── FileOperationToolStrip.Designer.cs
│   │   │   ├── FileOperationToolStrip.cs
│   │   │   ├── FileOperationToolStrip.resx
│   │   │   ├── FileOperationToolStrip.zh-CHS.resx
│   │   │   ├── FileViewToolStrip.Designer.cs
│   │   │   ├── FileViewToolStrip.cs
│   │   │   ├── FileViewToolStrip.resx
│   │   │   ├── FileViewToolStrip.zh-CHS.resx
│   │   │   ├── RSSTreeViewToolStrip.Designer.cs
│   │   │   ├── RSSTreeViewToolStrip.cs
│   │   │   ├── RSSTreeViewToolStrip.resx
│   │   │   └── RSSTreeViewToolStrip.zh-CHS.resx
│   │   ├── Configurations
│   │   │   ├── LanguageSelection.Designer.cs
│   │   │   ├── LanguageSelection.cs
│   │   │   ├── LanguageSelection.en.resx
│   │   │   ├── LanguageSelection.resx
│   │   │   ├── LanguageSelection.zh-CHS.resx
│   │   │   ├── LocalizationManager.cs
│   │   │   ├── PathPolicyControl.Designer.cs
│   │   │   ├── PathPolicyControl.cs
│   │   │   ├── PathPolicyControl.resx
│   │   │   ├── PathPolicyControl.zh-CHS.resx
│   │   │   ├── Perferences.Designer.cs
│   │   │   ├── Perferences.cs
│   │   │   ├── Perferences.en.resx
│   │   │   ├── Perferences.resx
│   │   │   ├── Perferences.zh-CHS.resx
│   │   │   ├── StartUpCriticalCheck.Designer.cs
│   │   │   ├── StartUpCriticalCheck.cs
│   │   │   ├── StartUpCriticalCheck.en.resx
│   │   │   ├── StartUpCriticalCheck.resx
│   │   │   └── StartUpCriticalCheck.zh-CHS.resx
│   │   ├── CourseData
│   │   │   ├── CourseAttributeTypeEnum.cs
│   │   │   ├── CourseCategoryVector.cs
│   │   │   ├── CourseDataGridView.Designer.cs
│   │   │   ├── CourseDataGridView.cs
│   │   │   ├── CourseDataGridView.resx
│   │   │   ├── CourseDataGridViewContextMenu.Designer.cs
│   │   │   ├── CourseDataGridViewContextMenu.cs
│   │   │   ├── CourseDataGridViewContextMenu.resx
│   │   │   ├── CourseDataGridViewContextMenu.zh-CHS.resx
│   │   │   ├── CourseDataTreeView.Designer.cs
│   │   │   ├── CourseDataTreeView.cs
│   │   │   ├── CourseDataTreeView.en.resx
│   │   │   ├── CourseDataTreeView.resx
│   │   │   ├── CourseDataTreeView.zh-CHS.resx
│   │   │   ├── CourseDetailViewer.Designer.cs
│   │   │   ├── CourseDetailViewer.cs
│   │   │   ├── CourseDetailViewer.resx
│   │   │   ├── CourseDetailViewer.zh-CHS.resx
│   │   │   ├── CourseItemTreePanel.Designer.cs
│   │   │   ├── CourseItemTreePanel.cs
│   │   │   ├── CourseItemTreePanel.resx
│   │   │   ├── CourseItemTreePanel.zh-CHS.resx
│   │   │   ├── CoursePanel.Designer.cs
│   │   │   ├── CoursePanel.cs
│   │   │   ├── CoursePanel.en.resx
│   │   │   ├── CoursePanel.resx
│   │   │   ├── CoursePanel.zh-CHS.resx
│   │   │   ├── CourseProperties.Designer.cs
│   │   │   ├── CourseProperties.cs
│   │   │   ├── CourseProperties.resx
│   │   │   ├── CourseProperties.zh-CHS.resx
│   │   │   ├── CourseToolStripMenuItemFileType.Designer.cs
│   │   │   ├── CourseToolStripMenuItemFileType.cs
│   │   │   ├── CourseToolStripMenuItemFileType.resx
│   │   │   ├── CourseToolStripMenuItemFileType.zh-CHS.resx
│   │   │   ├── CourseVectorBase.cs
│   │   │   ├── DataGridViewDownloadInfoCell.cs
│   │   │   ├── DataGridViewDownloadInfoColumn.cs
│   │   │   ├── ICourseView.cs
│   │   │   ├── WebcastCourseTreeNode.cs
│   │   │   ├── WebcastRootNodeBuilder.cs
│   │   │   └── WebcastSeriesTreeNode.cs
│   │   ├── ErrorManager.cs
│   │   ├── FileData
│   │   │   ├── CourseFileProperty.Designer.cs
│   │   │   ├── CourseFileProperty.cs
│   │   │   ├── CourseFileProperty.resx
│   │   │   ├── CourseFileProperty.zh-CHS.resx
│   │   │   ├── DataGridViewDownloadProgressCell.cs
│   │   │   ├── DataGridViewDownloadProgressColumn.cs
│   │   │   ├── DataGridViewDownloadStatueCell.cs
│   │   │   ├── DataGridViewDownloadStatueColumn.cs
│   │   │   ├── FileDataGridContextMenu.Designer.cs
│   │   │   ├── FileDataGridContextMenu.cs
│   │   │   ├── FileDataGridContextMenu.resx
│   │   │   ├── FileDataGridContextMenu.zh-CHS.resx
│   │   │   ├── FilePanel.Designer.cs
│   │   │   ├── FilePanel.cs
│   │   │   ├── FilePanel.en.resx
│   │   │   ├── FilePanel.resx
│   │   │   └── FilePanel.zh-CHS.resx
│   │   ├── FileMonitor.cs
│   │   ├── IReaper.csproj
│   │   ├── IReaper.csproj.vspscc
│   │   ├── Initializer
│   │   │   ├── CheckNewVersionTask.cs
│   │   │   ├── HISTORY.TXT
│   │   │   ├── Initalizer.Designer.cs
│   │   │   ├── Initalizer.cs
│   │   │   ├── Initalizer.resx
│   │   │   ├── LoadRawCourseDataTask.cs
│   │   │   ├── StartUpCriticalCheckTask.cs
│   │   │   ├── SynchorizeCourseData.Designer.cs
│   │   │   ├── SynchorizeCourseData.cs
│   │   │   ├── SynchorizeCourseData.resx
│   │   │   ├── WelcomePanel.Designer.cs
│   │   │   ├── WelcomePanel.cs
│   │   │   └── WelcomePanel.resx
│   │   ├── Languages.xml
│   │   ├── MainForm.Designer.cs
│   │   ├── MainForm.cs
│   │   ├── MainForm.resx
│   │   ├── MainForm.zh-CHS.resx
│   │   ├── Microsoft.WindowsLive.Id.Client.dll
│   │   ├── Notify
│   │   │   ├── NotifyIconContextMenu.Designer.cs
│   │   │   ├── NotifyIconContextMenu.cs
│   │   │   ├── NotifyIconContextMenu.resx
│   │   │   ├── NotifyIconContextMenu.zh-CHS.resx
│   │   │   └── iReaperNotifyManager.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── DataSources
│   │   │   │   ├── IReaper.CourseData.Course.datasource
│   │   │   │   ├── IReaper.FileData.CourseFileData.datasource
│   │   │   │   ├── IReaper.VideoPlay.PlayListItem.datasource
│   │   │   │   └── NewsComponents.NewsItem.datasource
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.en.Designer.cs
│   │   │   ├── Resources.en.resx
│   │   │   ├── Resources.resx
│   │   │   ├── Resources.zh-CHS.Designer.cs
│   │   │   ├── Resources.zh-CHS.resx
│   │   │   └── app.manifest
│   │   ├── RSS
│   │   │   ├── DataGridReadStateCell.cs
│   │   │   ├── DataGridReadStateColumn.cs
│   │   │   ├── NewsItemDateTimeCompare.cs
│   │   │   ├── PropertyForm.Designer.cs
│   │   │   ├── PropertyForm.cs
│   │   │   ├── PropertyForm.resx
│   │   │   ├── PropertyForm.zh-CHS.resx
│   │   │   ├── RSSCategoryTreeNode.cs
│   │   │   ├── RSSFeedTreeNode.cs
│   │   │   ├── RSSFeedTreeView.Designer.cs
│   │   │   ├── RSSFeedTreeView.cs
│   │   │   ├── RSSFeedTreeView.resx
│   │   │   ├── RSSFeedTreeView.zh-CHS.resx
│   │   │   ├── RSSFeedTreeViewContextMenu.Designer.cs
│   │   │   ├── RSSFeedTreeViewContextMenu.cs
│   │   │   ├── RSSFeedTreeViewContextMenu.resx
│   │   │   ├── RSSFeedTreeViewContextMenu.zh-CHS.resx
│   │   │   ├── RSSImageResources.cs
│   │   │   ├── RSSItemTreePanel.Designer.cs
│   │   │   ├── RSSItemTreePanel.cs
│   │   │   ├── RSSItemTreePanel.resx
│   │   │   ├── RSSItemTreePanel.zh-CHS.resx
│   │   │   ├── RSSItemsDataGrid.Designer.cs
│   │   │   ├── RSSItemsDataGrid.cs
│   │   │   ├── RSSItemsDataGrid.resx
│   │   │   ├── RSSItemsDataGridContextMenu.Designer.cs
│   │   │   ├── RSSItemsDataGridContextMenu.cs
│   │   │   ├── RSSItemsDataGridContextMenu.resx
│   │   │   ├── RSSItemsDataGridContextMenu.zh-CHS.resx
│   │   │   ├── RSSManager.cs
│   │   │   ├── RSSNewsItemFormatter.cs
│   │   │   ├── RSSNewsItemViewer.Designer.cs
│   │   │   ├── RSSNewsItemViewer.cs
│   │   │   ├── RSSNewsItemViewer.resx
│   │   │   ├── RSSPanel.Designer.cs
│   │   │   ├── RSSPanel.cs
│   │   │   ├── RSSPanel.resx
│   │   │   ├── RSSPanel.zh-CHS.resx
│   │   │   ├── RSSSubscription.Designer.cs
│   │   │   ├── RSSSubscription.cs
│   │   │   ├── RSSSubscription.resx
│   │   │   ├── RSSSubscription.zh-CHS.resx
│   │   │   ├── RSSTreeNode.cs
│   │   │   ├── RSSTreeNodeStateEnum.cs
│   │   │   ├── RefreshFeedTimer.Designer.cs
│   │   │   ├── RefreshFeedTimer.cs
│   │   │   ├── WizardBase.Designer.cs
│   │   │   └── WizardBase.cs
│   │   ├── Remind
│   │   │   ├── CourseReminder.cs
│   │   │   ├── IReminder.cs
│   │   │   ├── PersistentCourseReminder.Designer.cs
│   │   │   ├── PersistentCourseReminder.cs
│   │   │   ├── RemindManager.cs
│   │   │   ├── Reminder.Designer.cs
│   │   │   ├── Reminder.cs
│   │   │   ├── Reminder.resx
│   │   │   ├── Reminder.zh-CHS.resx
│   │   │   ├── ReminderTypeEnum.cs
│   │   │   ├── TempCourseReminder.Designer.cs
│   │   │   └── TempCourseReminder.cs
│   │   ├── Resources
│   │   │   ├── 047.GIF
│   │   │   ├── Code.Large.gif
│   │   │   ├── Code.Light.bmp
│   │   │   ├── Code.Light2.bmp
│   │   │   ├── Code.Small.Gray.gif
│   │   │   ├── Code.Small.gif
│   │   │   ├── Download.gif
│   │   │   ├── Folder.ico
│   │   │   ├── IeToolbar.bmp
│   │   │   ├── Loading.mht
│   │   │   ├── Open.gif
│   │   │   ├── PPT.Gray.gif
│   │   │   ├── PPT.Large.gif
│   │   │   ├── PPT.Light.bmp
│   │   │   ├── PPT.Light2.bmp
│   │   │   ├── PPT.Small.gif
│   │   │   ├── Video.Gray.gif
│   │   │   ├── Video.Large.gif
│   │   │   ├── Video.Light.bmp
│   │   │   ├── Video.Light2.bmp
│   │   │   ├── Video.Light2er.bmp
│   │   │   ├── Video.Light3.bmp
│   │   │   ├── Video.Small.gif
│   │   │   ├── Video.Smaller.gif
│   │   │   ├── clear.png
│   │   │   ├── feed.png
│   │   │   ├── ireaperRSS.png
│   │   │   ├── ireaperRSS_2.png
│   │   │   ├── lamp.bmp
│   │   │   ├── lamp.ico
│   │   │   ├── lightReminder.gif
│   │   │   ├── lightqa.jpg
│   │   │   ├── lightqa.png
│   │   │   ├── logo.jpg
│   │   │   ├── logo.png
│   │   │   ├── month_en-US.png
│   │   │   ├── month_zh-CHS.png
│   │   │   ├── outlook2003-orange.xsl
│   │   │   ├── plain_en-US.png
│   │   │   ├── plain_zh-CHS.png
│   │   │   ├── product.jpg
│   │   │   ├── product.png
│   │   │   ├── qa.jpg
│   │   │   ├── qa.png
│   │   │   ├── reminder.gif
│   │   │   ├── remove.jpg
│   │   │   ├── remove.png
│   │   │   ├── run.png
│   │   │   ├── series_en-US.png
│   │   │   ├── series_zh-CHS.png
│   │   │   ├── speaker_en-US.png
│   │   │   ├── speaker_zh-CHS.png
│   │   │   ├── stop.png
│   │   │   ├── syn.png
│   │   │   ├── technology_en-US.png
│   │   │   ├── technology_zh-CHS.png
│   │   │   └── webcast.png
│   │   ├── Statues
│   │   │   ├── AsyncWork.Designer.cs
│   │   │   ├── AsyncWork.cs
│   │   │   ├── AsyncWork.resx
│   │   │   ├── CourseFileWorkBase.Designer.cs
│   │   │   ├── CourseFileWorkBase.cs
│   │   │   ├── DownloadFileWork.Designer.cs
│   │   │   ├── DownloadFileWork.cs
│   │   │   ├── EmptyStatusStrip.cs
│   │   │   ├── IStatusStripIInitBridege.cs
│   │   │   ├── IiReaperStatusStrip.cs
│   │   │   ├── ImportFileWork.Designer.cs
│   │   │   ├── ImportFileWork.cs
│   │   │   ├── OnDemandWork.Designer.cs
│   │   │   ├── OnDemandWork.cs
│   │   │   ├── PauseFileWork.Designer.cs
│   │   │   ├── PauseFileWork.cs
│   │   │   ├── RemoveFileWork.Designer.cs
│   │   │   ├── RemoveFileWork.cs
│   │   │   ├── ShutDownWork.Designer.cs
│   │   │   ├── ShutDownWork.cs
│   │   │   ├── SynchorizeDataWork.Designer.cs
│   │   │   ├── SynchorizeDataWork.cs
│   │   │   ├── TransferFileWork.Designer.cs
│   │   │   ├── TransferFileWork.cs
│   │   │   ├── iReaperStatusStrip.Designer.cs
│   │   │   ├── iReaperStatusStrip.cs
│   │   │   └── iReaperStatusStrip.resx
│   │   ├── VideoPlay
│   │   │   ├── CreateNewPlayListWizard.Designer.cs
│   │   │   ├── CreateNewPlayListWizard.cs
│   │   │   ├── CreateNewPlayListWizard.resx
│   │   │   ├── ListItem.cs
│   │   │   ├── MetaDataReader.cs
│   │   │   ├── Plans.txt
│   │   │   ├── PlayList.cs
│   │   │   ├── PlayListCollection.cs
│   │   │   ├── PlayListDataGridView.Designer.cs
│   │   │   ├── PlayListDataGridView.cs
│   │   │   ├── PlayListDataGridView.resx
│   │   │   ├── PlayListForm.Designer.cs
│   │   │   ├── PlayListForm.cs
│   │   │   ├── PlayListForm.resx
│   │   │   ├── PlayListFormContextMenu.Designer.cs
│   │   │   ├── PlayListFormContextMenu.cs
│   │   │   ├── PlayListFormContextMenu.resx
│   │   │   ├── PlayListItem.cs
│   │   │   ├── PlayListManageMenu.Designer.cs
│   │   │   ├── PlayListManageMenu.cs
│   │   │   ├── PlayListManageMenu.resx
│   │   │   ├── PlayListManageMenu.zh-CHS.resx
│   │   │   ├── VideoPlayHelper.cs
│   │   │   └── WMFSDKFunctions.cs
│   │   ├── WWE
│   │   │   ├── UnRegisteredException.cs
│   │   │   └── WWEManager.cs
│   │   ├── iReaperDockContent.Designer.cs
│   │   ├── iReaperDockContent.cs
│   │   ├── ireaper.pfx
│   │   ├── logo.ico
│   │   └── msidcrl40.dll
│   └── localtestrun.testrunconfig
└── c#下载工具源码_iReaper-990.zip

67 directories, 684 files


标签: 工具 源码 下载 C#

实例下载地址

c#下载工具源码

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警