├── .gitignore ├── ErcTools ├── App.xaml ├── App.xaml.cs ├── Command │ ├── CloseWindowsCommand.cs │ └── DelegateCommand.cs ├── ErcTools.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── ViewModel │ ├── MainViewModel.cs │ └── ViewModelBase.cs └── favicon.ico ├── README.assets ├── 1561103527447.png ├── 1561103547373.png └── 1561103555928.png ├── README.md ├── WPF_Best_Hosts ├── App.config ├── App.xaml ├── App.xaml.cs ├── Behaviour │ ├── DataGridSortBehavior.cs │ ├── ResponseComparer.cs │ └── WebSpeedComparer.cs ├── Converter │ └── InverseBoolConvert.cs ├── Domain │ ├── AnotherCommandImplementation.cs │ ├── DemoItem.cs │ ├── DocumentationLink.cs │ ├── DocumentationLinkType.cs │ ├── DocumentationLinks.xaml │ ├── DocumentationLinks.xaml.cs │ ├── MainWindowViewModel.cs │ └── NotifyPropertyChangedExtension.cs ├── Lib │ ├── Hosts.cs │ ├── HttpHelper.cs │ └── Utils.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── HostsData.cs │ ├── HtmlSearch.cs │ ├── PingData.cs │ └── UpdateDataParams.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── View │ ├── Home.xaml │ ├── Home.xaml.cs │ ├── HostsManage.xaml │ ├── HostsManage.xaml.cs │ ├── IPTest.xaml │ └── IPTest.xaml.cs ├── WPF_Best_Hosts.csproj ├── XamlDisplayEx.cs ├── favicon.ico └── packages.config ├── Wpf_github_hosts.sln ├── Wpf_github_hosts.sln.DotSettings └── Wpf_github_hosts ├── App.xaml ├── App.xaml.cs ├── Hosts.cs ├── HtmlSearch.cs ├── HttpHelper.cs ├── LogHelper.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model.cs ├── ProgressBarHelper.cs ├── Properties ├── Annotations.cs ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs ├── Settings.settings └── app.manifest ├── Wpf_github_hosts.csproj ├── app.config └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/.gitignore -------------------------------------------------------------------------------- /ErcTools/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/App.xaml -------------------------------------------------------------------------------- /ErcTools/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/App.xaml.cs -------------------------------------------------------------------------------- /ErcTools/Command/CloseWindowsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/Command/CloseWindowsCommand.cs -------------------------------------------------------------------------------- /ErcTools/Command/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/Command/DelegateCommand.cs -------------------------------------------------------------------------------- /ErcTools/ErcTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/ErcTools.csproj -------------------------------------------------------------------------------- /ErcTools/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/MainWindow.xaml -------------------------------------------------------------------------------- /ErcTools/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ErcTools/ViewModel/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/ViewModel/MainViewModel.cs -------------------------------------------------------------------------------- /ErcTools/ViewModel/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/ViewModel/ViewModelBase.cs -------------------------------------------------------------------------------- /ErcTools/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/ErcTools/favicon.ico -------------------------------------------------------------------------------- /README.assets/1561103527447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/README.assets/1561103527447.png -------------------------------------------------------------------------------- /README.assets/1561103547373.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/README.assets/1561103547373.png -------------------------------------------------------------------------------- /README.assets/1561103555928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/README.assets/1561103555928.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/README.md -------------------------------------------------------------------------------- /WPF_Best_Hosts/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/App.config -------------------------------------------------------------------------------- /WPF_Best_Hosts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/App.xaml -------------------------------------------------------------------------------- /WPF_Best_Hosts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/App.xaml.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Behaviour/DataGridSortBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Behaviour/DataGridSortBehavior.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Behaviour/ResponseComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Behaviour/ResponseComparer.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Behaviour/WebSpeedComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Behaviour/WebSpeedComparer.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Converter/InverseBoolConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Converter/InverseBoolConvert.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/AnotherCommandImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/AnotherCommandImplementation.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/DemoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/DemoItem.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/DocumentationLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/DocumentationLink.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/DocumentationLinkType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/DocumentationLinkType.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/DocumentationLinks.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/DocumentationLinks.xaml -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/DocumentationLinks.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/DocumentationLinks.xaml.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/MainWindowViewModel.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Domain/NotifyPropertyChangedExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Domain/NotifyPropertyChangedExtension.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Lib/Hosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Lib/Hosts.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Lib/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Lib/HttpHelper.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Lib/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Lib/Utils.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/MainWindow.xaml -------------------------------------------------------------------------------- /WPF_Best_Hosts/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Model/HostsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Model/HostsData.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Model/HtmlSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Model/HtmlSearch.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Model/PingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Model/PingData.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Model/UpdateDataParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Model/UpdateDataParams.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Properties/Resources.resx -------------------------------------------------------------------------------- /WPF_Best_Hosts/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/Properties/Settings.settings -------------------------------------------------------------------------------- /WPF_Best_Hosts/View/Home.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/View/Home.xaml -------------------------------------------------------------------------------- /WPF_Best_Hosts/View/Home.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/View/Home.xaml.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/View/HostsManage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/View/HostsManage.xaml -------------------------------------------------------------------------------- /WPF_Best_Hosts/View/HostsManage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/View/HostsManage.xaml.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/View/IPTest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/View/IPTest.xaml -------------------------------------------------------------------------------- /WPF_Best_Hosts/View/IPTest.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/View/IPTest.xaml.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/WPF_Best_Hosts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/WPF_Best_Hosts.csproj -------------------------------------------------------------------------------- /WPF_Best_Hosts/XamlDisplayEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/XamlDisplayEx.cs -------------------------------------------------------------------------------- /WPF_Best_Hosts/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/favicon.ico -------------------------------------------------------------------------------- /WPF_Best_Hosts/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/WPF_Best_Hosts/packages.config -------------------------------------------------------------------------------- /Wpf_github_hosts.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts.sln -------------------------------------------------------------------------------- /Wpf_github_hosts.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts.sln.DotSettings -------------------------------------------------------------------------------- /Wpf_github_hosts/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/App.xaml -------------------------------------------------------------------------------- /Wpf_github_hosts/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/App.xaml.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Hosts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Hosts.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/HtmlSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/HtmlSearch.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/HttpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/HttpHelper.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/LogHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/LogHelper.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/MainWindow.xaml -------------------------------------------------------------------------------- /Wpf_github_hosts/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Model.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/ProgressBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/ProgressBarHelper.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/Annotations.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/Resources.resx -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/Settings.settings -------------------------------------------------------------------------------- /Wpf_github_hosts/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Properties/app.manifest -------------------------------------------------------------------------------- /Wpf_github_hosts/Wpf_github_hosts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/Wpf_github_hosts.csproj -------------------------------------------------------------------------------- /Wpf_github_hosts/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/app.config -------------------------------------------------------------------------------- /Wpf_github_hosts/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ercJuL/Wpf_github_hosts/HEAD/Wpf_github_hosts/packages.config --------------------------------------------------------------------------------