在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → LogViewer

LogViewer

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:51.34M
  • 下载次数:30
  • 浏览次数:170
  • 发布时间:2023-05-16
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:njpaper
  • 文件格式:.rar
  • 所需积分:10
 相关标签: view Log IE vi

实例介绍

【实例简介】LogViewer

       可以读取UDp协议的日志文件或txt文本文件,支持查询、过滤等多种功能。

【实例截图】

from clipboard


    

【核心代码】

.
├── LogViewer-master
│   ├── LICENSE
│   ├── README.md
│   ├── docs
│   │   ├── 1-main.png
│   │   ├── 2-log-dialog.png
│   │   ├── 3-logger-dialog.png
│   │   ├── 4-main-searching.png
│   │   ├── 5-settings-main.png
│   │   ├── 6-settings-receivers.png
│   │   └── 7-settings-ignored-ips.png
│   └── src
│       ├── App.config
│       ├── App.xaml
│       ├── App.xaml.cs
│       ├── Converters
│       │   ├── CountToVisibilityConverter.cs
│       │   ├── DataConverter.cs
│       │   ├── LoggerDisplayConverter.cs
│       │   ├── MaxLengthConverter.cs
│       │   ├── ProgressStateConverter.cs
│       │   └── TreeViewLineConverter.cs
│       ├── CustomColorPicker.dll
│       ├── Enums
│       │   ├── eImportTemplateParameters.cs
│       │   └── eLogLevel.cs
│       ├── Helpers
│       │   ├── AsyncObservableCollection.cs
│       │   ├── BindableSelectedItemBehavior.cs
│       │   ├── DialogCloser.cs
│       │   ├── ExtensionMethods.cs
│       │   ├── FileWatcher.cs
│       │   ├── SearchableTextControl.cs
│       │   ├── TVIExtender.cs
│       │   └── UnsafeNative.cs
│       ├── Localization
│       │   ├── LanguageEventArgs.cs
│       │   ├── LocBinding.cs
│       │   ├── Locals.Designer.cs
│       │   ├── Locals.en.resx
│       │   ├── Locals.resx
│       │   └── TranslationSource.cs
│       ├── LogViewer.csproj
│       ├── LogViewer.csproj.user
│       ├── LogViewer.psess
│       ├── LogViewer.sln
│       ├── LogViewer.sln.DotSettings
│       ├── LogViewer200225.vspx
│       ├── MVVM
│       │   ├── Commands
│       │   │   └── RelayCommand.cs
│       │   ├── Models
│       │   │   ├── IgnoredIPAddress.cs
│       │   │   ├── ImportLogFile.cs
│       │   │   ├── LogMessage.cs
│       │   │   ├── LogTemplate.cs
│       │   │   ├── LogTemplateItem.cs
│       │   │   ├── LogTemplateItemInfo.cs
│       │   │   ├── Receiver.cs
│       │   │   ├── ReleaseNotes.cs
│       │   │   ├── Settings.cs
│       │   │   └── Theme.cs
│       │   ├── TreeView
│       │   │   ├── CheckBoxId.cs
│       │   │   └── Node.cs
│       │   ├── ViewModels
│       │   │   ├── BaseViewModel.cs
│       │   │   ├── ImportLogsProcessViewModel.cs
│       │   │   ├── LogImportTemplateViewModel.cs
│       │   │   ├── LogViewModel.cs
│       │   │   ├── ReleaseNotesViewModel.cs
│       │   │   ├── SearchResultViewModel.cs
│       │   │   └── SettingsViewModel.cs
│       │   └── Views
│       │       ├── ImportLogsProcessDialog.xaml
│       │       ├── ImportLogsProcessDialog.xaml.cs
│       │       ├── LogImportTemplateDialog.xaml
│       │       ├── LogImportTemplateDialog.xaml.cs
│       │       ├── MainWindow.xaml
│       │       ├── MainWindow.xaml.cs
│       │       ├── NewUpdateAvailableDialog.xaml
│       │       ├── NewUpdateAvailableDialog.xaml.cs
│       │       ├── ReleaseNotesDialog.xaml
│       │       ├── ReleaseNotesDialog.xaml.cs
│       │       ├── SearchResult.xaml
│       │       ├── SearchResult.xaml.cs
│       │       ├── SelectTimeIntervalDialog.xaml
│       │       ├── SelectTimeIntervalDialog.xaml.cs
│       │       ├── SelectTimestampDialog.xaml
│       │       ├── SelectTimestampDialog.xaml.cs
│       │       ├── SettingsWindow.xaml
│       │       └── SettingsWindow.xaml.cs
│       ├── Properties
│       │   ├── Annotations.cs
│       │   ├── AssemblyInfo.cs
│       │   ├── Resources.Designer.cs
│       │   ├── Resources.resx
│       │   ├── Settings.Designer.cs
│       │   ├── Settings.settings
│       │   └── app.manifest
│       ├── ReleaseNotes.xml
│       ├── Styles
│       │   ├── DrawingImages.xaml
│       │   └── Styles.xaml
│       ├── UDPPacketsParser.cs
│       ├── UpdateManager.cs
│       ├── Validations
│       │   ├── IPValidation.cs
│       │   └── PortNumberValidation.cs
│       ├── bin
│       │   └── Debug
│       ├── log.ico
│       ├── obj
│       │   └── Debug
│       │       ├── App.g.cs
│       │       ├── App.g.i.cs
│       │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │       ├── GeneratedInternalTypeHelper.g.cs
│       │       ├── GeneratedInternalTypeHelper.g.i.cs
│       │       ├── LogViewer.csproj.AssemblyReference.cache
│       │       ├── LogViewer.csproj.SuggestedBindingRedirects.cache
│       │       ├── LogViewer_Content.g.cs
│       │       ├── LogViewer_Content.g.i.cs
│       │       ├── LogViewer_MarkupCompile.cache
│       │       ├── LogViewer_MarkupCompile.lref
│       │       ├── MVVM
│       │       │   └── Views
│       │       │       ├── ImportLogsProcessDialog.g.cs
│       │       │       ├── ImportLogsProcessDialog.g.i.cs
│       │       │       ├── LogImportTemplateDialog.g.cs
│       │       │       ├── LogImportTemplateDialog.g.i.cs
│       │       │       ├── MainWindow.g.cs
│       │       │       ├── MainWindow.g.i.cs
│       │       │       ├── NewUpdateAvailableDialog.g.cs
│       │       │       ├── NewUpdateAvailableDialog.g.i.cs
│       │       │       ├── ReleaseNotesDialog.g.cs
│       │       │       ├── ReleaseNotesDialog.g.i.cs
│       │       │       ├── SearchResult.g.cs
│       │       │       ├── SearchResult.g.i.cs
│       │       │       ├── SelectTimeIntervalDialog.g.cs
│       │       │       ├── SelectTimeIntervalDialog.g.i.cs
│       │       │       ├── SelectTimestampDialog.g.cs
│       │       │       ├── SelectTimestampDialog.g.i.cs
│       │       │       ├── SettingsWindow.g.cs
│       │       │       └── SettingsWindow.g.i.cs
│       │       ├── Styles
│       │       └── TempPE
│       ├── packages
│       │   ├── MSTest.TestAdapter.1.2.0
│       │   │   ├── MSTest.TestAdapter.1.2.0.nupkg
│       │   │   └── build
│       │   │       ├── _common
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│       │   │       │   ├── cs
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── de
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── es
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── fr
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── it
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── ja
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── ko
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── pl
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── pt
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── ru
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── tr
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   ├── zh-Hans
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       │   └── zh-Hant
│       │   │       │       ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll
│       │   │       │       ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll
│       │   │       │       └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll
│       │   │       ├── net45
│       │   │       │   ├── MSTest.TestAdapter.props
│       │   │       │   └── MSTest.TestAdapter.targets
│       │   │       ├── netcoreapp1.0
│       │   │       │   ├── MSTest.TestAdapter.props
│       │   │       │   └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│       │   │       └── uap10.0
│       │   │           ├── MSTest.TestAdapter.props
│       │   │           ├── MSTest.TestAdapter.targets
│       │   │           └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll
│       │   ├── MSTest.TestFramework.1.2.0
│       │   │   ├── MSTest.TestFramework.1.2.0.nupkg
│       │   │   └── lib
│       │   │       ├── net45
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│       │   │       │   ├── cs
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── de
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── es
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── fr
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── it
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── ja
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── ko
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── pl
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── pt
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── ru
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── tr
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── zh-Hans
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   └── zh-Hant
│       │   │       │       ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │       └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       ├── netstandard1.0
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML
│       │   │       │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│       │   │       │   ├── cs
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── de
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── es
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── fr
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── it
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── ja
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── ko
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── pl
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── pt
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── ru
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── tr
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   ├── zh-Hans
│       │   │       │   │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │   │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       │   └── zh-Hant
│       │   │       │       ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │       │       └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │       └── uap10.0
│       │   │           ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML
│       │   │           ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll
│       │   │           ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML
│       │   │           ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll
│       │   │           ├── cs
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── de
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── es
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── fr
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── it
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── ja
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── ko
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── pl
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── pt
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── ru
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── tr
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           ├── zh-Hans
│       │   │           │   ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │           │   └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   │           └── zh-Hant
│       │   │               ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml
│       │   │               └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml
│       │   ├── MaterialDesignColors.1.2.7
│       │   │   ├── MaterialDesignColors.1.2.7.nupkg
│       │   │   ├── images
│       │   │   │   └── MaterialDesignColors.Icon.png
│       │   │   └── lib
│       │   │       ├── net45
│       │   │       │   ├── MaterialDesignColors.dll
│       │   │       │   └── MaterialDesignColors.pdb
│       │   │       └── netcoreapp3.1
│       │   │           ├── MaterialDesignColors.dll
│       │   │           └── MaterialDesignColors.pdb
│       │   ├── MaterialDesignThemes.3.2.0
│       │   │   ├── MaterialDesignThemes.3.2.0.nupkg
│       │   │   ├── build
│       │   │   │   ├── MaterialDesignThemes.targets
│       │   │   │   └── Resources
│       │   │   │       └── Roboto
│       │   │   │           ├── Roboto-Black.ttf
│       │   │   │           ├── Roboto-BlackItalic.ttf
│       │   │   │           ├── Roboto-Bold.ttf
│       │   │   │           ├── Roboto-BoldItalic.ttf
│       │   │   │           ├── Roboto-Italic.ttf
│       │   │   │           ├── Roboto-Light.ttf
│       │   │   │           ├── Roboto-LightItalic.ttf
│       │   │   │           ├── Roboto-Medium.ttf
│       │   │   │           ├── Roboto-MediumItalic.ttf
│       │   │   │           ├── Roboto-Regular.ttf
│       │   │   │           ├── Roboto-Thin.ttf
│       │   │   │           ├── Roboto-ThinItalic.ttf
│       │   │   │           ├── RobotoCondensed-Bold.ttf
│       │   │   │           ├── RobotoCondensed-BoldItalic.ttf
│       │   │   │           ├── RobotoCondensed-Italic.ttf
│       │   │   │           ├── RobotoCondensed-Light.ttf
│       │   │   │           ├── RobotoCondensed-LightItalic.ttf
│       │   │   │           └── RobotoCondensed-Regular.ttf
│       │   │   ├── images
│       │   │   │   └── MaterialDesignThemes.Icon.png
│       │   │   ├── lib
│       │   │   │   ├── net45
│       │   │   │   │   ├── MaterialDesignThemes.Wpf.dll
│       │   │   │   │   ├── MaterialDesignThemes.Wpf.pdb
│       │   │   │   │   └── MaterialDesignThemes.Wpf.xml
│       │   │   │   └── netcoreapp3.1
│       │   │   │       ├── MaterialDesignThemes.Wpf.dll
│       │   │   │       ├── MaterialDesignThemes.Wpf.pdb
│       │   │   │       └── MaterialDesignThemes.Wpf.xml
│       │   │   └── tools
│       │   │       └── VisualStudioToolsManifest.xml
│       │   ├── NLog.4.5.11
│       │   │   ├── NLog.4.5.11.nupkg
│       │   │   └── lib
│       │   │       ├── monoandroid44
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── net35
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── net40-client
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── net45
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── netstandard1.3
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── netstandard1.5
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── netstandard2.0
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── sl4
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── sl5
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       ├── wp8
│       │   │       │   ├── NLog.dll
│       │   │       │   └── NLog.xml
│       │   │       └── xamarinios10
│       │   │           ├── NLog.dll
│       │   │           └── NLog.xml
│       │   └── System.Windows.Interactivity.WPF.2.0.20525
│       │       ├── System.Windows.Interactivity.WPF.2.0.20525.nupkg
│       │       └── lib
│       │           └── net40
│       │               ├── Microsoft.Expression.Interactions.dll
│       │               ├── Microsoft.Expression.Interactions.xml
│       │               ├── System.Windows.Interactivity.dll
│       │               └── System.Windows.Interactivity.xml
│       └── packages.config
├── des.v11.suo
└── 好例子网C#_LogViewer-master.rar

118 directories, 330 files


标签: view Log IE vi

实例下载地址

LogViewer

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警