├── .github ├── ISSUE_TEMPLATE │ ├── BugReport_en.yaml │ ├── BugReport_zh.yaml │ ├── FeatureRequest_en.yaml │ ├── FeatureRequest_zh.yaml │ └── config.yml └── workflows │ └── main.yml ├── .gitignore ├── Help.md ├── Help_en-us.md ├── LICENSE ├── LICENSE_CN ├── OpenHardwareMonitorApi ├── LibreHardwareMonitorLib.dll ├── LibreHardwareMonitorLib.xml ├── OpenHardwareMonitorApi.vcxproj ├── OpenHardwareMonitorApi.vcxproj.filters ├── OpenHardwareMonitorImp.cpp ├── OpenHardwareMonitorImp.h ├── ReadMe.txt ├── Stdafx.cpp ├── Stdafx.h ├── UpdateVisitor.cpp ├── UpdateVisitor.h ├── app.rc └── resource.h ├── PluginDemo ├── CustomDrawItem.cpp ├── CustomDrawItem.h ├── DataManager.cpp ├── DataManager.h ├── OptionsDlg.cpp ├── OptionsDlg.h ├── PluginDemo.cpp ├── PluginDemo.h ├── PluginDemo.rc ├── PluginDemo.vcxproj ├── PluginDemo.vcxproj.filters ├── PluginSystemDate.cpp ├── PluginSystemDate.h ├── PluginSystemTime.cpp ├── PluginSystemTime.h ├── framework.h ├── pch.cpp ├── pch.h └── resource.h ├── README.md ├── README_en-us.md ├── Screenshots ├── 420555677-53bd3ac9-1c55-4212-aa68-1fe5711e9fbc.png ├── en_us │ ├── main.png │ ├── main1.png │ ├── option.jpg │ ├── selecte_skin.png │ ├── taskbar.png │ └── taskbar_item_settings.png ├── image-20250310121048889.png ├── images │ ├── image-20221119093529479.png │ ├── image-20221119093547649.png │ ├── image-20221119094324759.png │ ├── image-20221119094501312.png │ ├── image1.jpg │ ├── image2.jpg │ ├── image3.jpg │ └── item.png ├── main.png ├── main1.png ├── option.jpg ├── selecte_skin.png ├── skins.PNG ├── taskbar.PNG └── taskbar_item_settings.png ├── TrafficMonitor.sln ├── TrafficMonitor ├── AboutDlg.cpp ├── AboutDlg.h ├── AdapterCommon.cpp ├── AdapterCommon.h ├── AppAlreadyRuningDlg.cpp ├── AppAlreadyRuningDlg.h ├── BaseDialog.cpp ├── BaseDialog.h ├── CAutoAdaptSettingsDlg.cpp ├── CAutoAdaptSettingsDlg.h ├── CMFCColorDialogEx.cpp ├── CMFCColorDialogEx.h ├── CPUUsage.cpp ├── CPUUsage.h ├── CSkinPreviewView.cpp ├── CSkinPreviewView.h ├── CTabCtrlEx.cpp ├── CTabCtrlEx.h ├── CVariant.cpp ├── CVariant.h ├── CalendarHelper.cpp ├── CalendarHelper.h ├── ClassicalTaskbarDlg.cpp ├── ClassicalTaskbarDlg.h ├── ColorSettingListCtrl.cpp ├── ColorSettingListCtrl.h ├── ColorStatic.cpp ├── ColorStatic.h ├── ComboBox2.cpp ├── ComboBox2.h ├── Common.cpp ├── Common.h ├── CommonData.cpp ├── CommonData.h ├── D2D1Support.cpp ├── D2D1Support.h ├── D3D10Support1.cpp ├── D3D10Support1.h ├── DCompositionSupport.cpp ├── DCompositionSupport.h ├── DisplayItem.cpp ├── DisplayItem.h ├── DisplayTextSettingDlg.cpp ├── DisplayTextSettingDlg.h ├── DllFunctions.cpp ├── DllFunctions.h ├── DrawCommon.cpp ├── DrawCommon.h ├── DrawCommonEx.cpp ├── DrawCommonEx.h ├── DrawCommonFactory.cpp ├── DrawCommonFactory.h ├── DrawTextManager.cpp ├── DrawTextManager.h ├── Dxgi1Support2.cpp ├── Dxgi1Support2.h ├── FileDialogEx.cpp ├── FileDialogEx.h ├── FilePathHelper.cpp ├── FilePathHelper.h ├── GeneralSettingsDlg.cpp ├── GeneralSettingsDlg.h ├── HResultException.cpp ├── HResultException.h ├── HighResolutionTimer.h ├── HistoryTrafficCalendarDlg.cpp ├── HistoryTrafficCalendarDlg.h ├── HistoryTrafficDlg.cpp ├── HistoryTrafficDlg.h ├── HistoryTrafficFile.cpp ├── HistoryTrafficFile.h ├── HistoryTrafficListCtrl.cpp ├── HistoryTrafficListCtrl.h ├── HistoryTrafficListDlg.cpp ├── HistoryTrafficListDlg.h ├── IDrawCommon.h ├── IconSelectDlg.cpp ├── IconSelectDlg.h ├── Image2DEffect.cpp ├── Image2DEffect.h ├── IniHelper.cpp ├── IniHelper.h ├── LinkStatic.cpp ├── LinkStatic.h ├── ListCtrlEx.cpp ├── ListCtrlEx.h ├── MainWndColorDlg.cpp ├── MainWndColorDlg.h ├── MainWndSettingsDlg.cpp ├── MainWndSettingsDlg.h ├── MessageDlg.cpp ├── MessageDlg.h ├── NetworkInfoDlg.cpp ├── NetworkInfoDlg.h ├── Nullable.hpp ├── OptionsDlg.cpp ├── OptionsDlg.h ├── PictureStatic.cpp ├── PictureStatic.h ├── PluginInfoDlg.cpp ├── PluginInfoDlg.h ├── PluginManager.cpp ├── PluginManager.h ├── PluginManagerDlg.cpp ├── PluginManagerDlg.h ├── PluginUpdateHelper.cpp ├── PluginUpdateHelper.h ├── ReadMe.txt ├── RenderAPISupport.h ├── SelectConnectionsDlg.cpp ├── SelectConnectionsDlg.h ├── SetItemOrderDlg.cpp ├── SetItemOrderDlg.h ├── SettingsHelper.cpp ├── SettingsHelper.h ├── SimpleXML.cpp ├── SimpleXML.h ├── SkinAutoAdaptSettingDlg.cpp ├── SkinAutoAdaptSettingDlg.h ├── SkinDlg.cpp ├── SkinDlg.h ├── SkinFile.cpp ├── SkinFile.h ├── SkinManager.cpp ├── SkinManager.h ├── SpinEdit.cpp ├── SpinEdit.h ├── StaticEx.cpp ├── StaticEx.h ├── StrTable.cpp ├── StrTable.h ├── SupportedRenderEnums.cpp ├── SupportedRenderEnums.h ├── TabDlg.cpp ├── TabDlg.h ├── TaskBarDlg.cpp ├── TaskBarDlg.h ├── TaskBarDlgDrawCommon.cpp ├── TaskBarDlgDrawCommon.h ├── TaskBarSettingsDlg.cpp ├── TaskBarSettingsDlg.h ├── TaskbarColorDlg.cpp ├── TaskbarColorDlg.h ├── TaskbarDefaultStyle.cpp ├── TaskbarDefaultStyle.h ├── TaskbarHelper.cpp ├── TaskbarHelper.h ├── TaskbarItemOrderHelper.cpp ├── TaskbarItemOrderHelper.h ├── Test.cpp ├── Test.h ├── TinyXml2Helper.cpp ├── TinyXml2Helper.h ├── TrafficMonitor.cpp ├── TrafficMonitor.h ├── TrafficMonitor.rc ├── TrafficMonitor.vcxproj ├── TrafficMonitor.vcxproj.filters ├── TrafficMonitor.vcxproj.user ├── TrafficMonitorDlg.cpp ├── TrafficMonitorDlg.h ├── UpdateHelper.cpp ├── UpdateHelper.h ├── WIC.cpp ├── WIC.h ├── Win11TaskbarDlg.cpp ├── Win11TaskbarDlg.h ├── Win11TaskbarSettingDlg.cpp ├── Win11TaskbarSettingDlg.h ├── WinVersionHelper.cpp ├── WinVersionHelper.h ├── WindowsSettingHelper.cpp ├── WindowsSettingHelper.h ├── WindowsWebExperienceDetector.cpp ├── WindowsWebExperienceDetector.h ├── WineTaskbarDlg.cpp ├── WineTaskbarDlg.h ├── auto_start_helper.cpp ├── auto_start_helper.h ├── crashtool.cpp ├── crashtool.h ├── language.h ├── language │ ├── English.ini │ ├── German.ini │ ├── Hebrew.ini │ ├── Hungarian.ini │ ├── Italian.ini │ ├── Polish.ini │ ├── Portuguese_Brazilian.ini │ ├── Simplified_Chinese.ini │ ├── Traditional_Chinese.ini │ └── Turkish.ini ├── print_compile_time.bat ├── res │ ├── Acknowledgement.txt │ ├── Acknowledgement_en.txt │ ├── TrafficMonitor.ico │ ├── TrafficMonitor.rc2 │ ├── about_background_hd.bmp │ ├── bitmap1.bmp │ ├── bitmap3.bmp │ ├── menu_icon │ │ ├── close.ico │ │ ├── connection.ico │ │ ├── exit.ico │ │ ├── function.ico │ │ ├── help.ico │ │ ├── info.ico │ │ ├── item.ico │ │ ├── lock.ico │ │ ├── main_window.ico │ │ ├── more.ico │ │ ├── mouse.ico │ │ ├── notify.ico │ │ ├── pin.ico │ │ ├── plugin_disabled.ico │ │ ├── plugins.ico │ │ ├── setting.ico │ │ ├── skn.ico │ │ ├── statistics.ico │ │ ├── task_manager.ico │ │ └── taskbar_window.ico │ ├── notify_preview.bmp │ ├── notify_preview_light.bmp │ ├── notifyicon.ico │ ├── notifyicon2.ico │ ├── notifyicon3.ico │ ├── notifyicon4.ico │ └── notifyicon5.ico ├── resource.h ├── skins │ ├── 0默认皮肤 │ │ ├── background.png │ │ ├── background_l.png │ │ └── skin.ini │ ├── xml_test │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.xml │ ├── 皮肤01 │ │ ├── background.png │ │ ├── background_l.png │ │ └── skin.ini │ ├── 皮肤02 │ │ ├── background.png │ │ ├── background_l.png │ │ └── skin.ini │ ├── 皮肤03 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤04 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤05 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤06 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤07 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤08 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤09 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤10 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤10(竖排) │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ ├── 皮肤11 │ │ ├── background.bmp │ │ ├── background_l.bmp │ │ └── skin.ini │ └── 默认皮肤2 │ │ ├── background.png │ │ ├── background_l.png │ │ └── skin.ini ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── tinyxml2 │ ├── tinyxml2.cpp │ └── tinyxml2.h ├── UpdateLog ├── update_log.md ├── update_log_en-us.md └── update_log_zh-tw.md ├── images └── image-20250310173257156.png ├── include ├── OpenHardwareMonitor │ ├── OpenHardwareMonitorApi.h │ └── OpenHardwareMonitorGlobal.h └── PluginInterface.h ├── version.info ├── version_utf8.info └── 皮肤制作教程.md /.github/ISSUE_TEMPLATE/BugReport_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/.github/ISSUE_TEMPLATE/BugReport_en.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BugReport_zh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/.github/ISSUE_TEMPLATE/BugReport_zh.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FeatureRequest_en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/.github/ISSUE_TEMPLATE/FeatureRequest_en.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FeatureRequest_zh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/.github/ISSUE_TEMPLATE/FeatureRequest_zh.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/.gitignore -------------------------------------------------------------------------------- /Help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Help.md -------------------------------------------------------------------------------- /Help_en-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Help_en-us.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_CN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/LICENSE_CN -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/LibreHardwareMonitorLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/LibreHardwareMonitorLib.dll -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/LibreHardwareMonitorLib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/LibreHardwareMonitorLib.xml -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/OpenHardwareMonitorApi.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/OpenHardwareMonitorApi.vcxproj -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/OpenHardwareMonitorApi.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/OpenHardwareMonitorApi.vcxproj.filters -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/OpenHardwareMonitorImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/OpenHardwareMonitorImp.cpp -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/OpenHardwareMonitorImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/OpenHardwareMonitorImp.h -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/ReadMe.txt -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/Stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/Stdafx.cpp -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/Stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/Stdafx.h -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/UpdateVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/UpdateVisitor.cpp -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/UpdateVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/UpdateVisitor.h -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/app.rc -------------------------------------------------------------------------------- /OpenHardwareMonitorApi/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/OpenHardwareMonitorApi/resource.h -------------------------------------------------------------------------------- /PluginDemo/CustomDrawItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/CustomDrawItem.cpp -------------------------------------------------------------------------------- /PluginDemo/CustomDrawItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/CustomDrawItem.h -------------------------------------------------------------------------------- /PluginDemo/DataManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/DataManager.cpp -------------------------------------------------------------------------------- /PluginDemo/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/DataManager.h -------------------------------------------------------------------------------- /PluginDemo/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/OptionsDlg.cpp -------------------------------------------------------------------------------- /PluginDemo/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/OptionsDlg.h -------------------------------------------------------------------------------- /PluginDemo/PluginDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginDemo.cpp -------------------------------------------------------------------------------- /PluginDemo/PluginDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginDemo.h -------------------------------------------------------------------------------- /PluginDemo/PluginDemo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginDemo.rc -------------------------------------------------------------------------------- /PluginDemo/PluginDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginDemo.vcxproj -------------------------------------------------------------------------------- /PluginDemo/PluginDemo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginDemo.vcxproj.filters -------------------------------------------------------------------------------- /PluginDemo/PluginSystemDate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginSystemDate.cpp -------------------------------------------------------------------------------- /PluginDemo/PluginSystemDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginSystemDate.h -------------------------------------------------------------------------------- /PluginDemo/PluginSystemTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginSystemTime.cpp -------------------------------------------------------------------------------- /PluginDemo/PluginSystemTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/PluginSystemTime.h -------------------------------------------------------------------------------- /PluginDemo/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/framework.h -------------------------------------------------------------------------------- /PluginDemo/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/pch.cpp -------------------------------------------------------------------------------- /PluginDemo/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/pch.h -------------------------------------------------------------------------------- /PluginDemo/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/PluginDemo/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/README.md -------------------------------------------------------------------------------- /README_en-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/README_en-us.md -------------------------------------------------------------------------------- /Screenshots/420555677-53bd3ac9-1c55-4212-aa68-1fe5711e9fbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/420555677-53bd3ac9-1c55-4212-aa68-1fe5711e9fbc.png -------------------------------------------------------------------------------- /Screenshots/en_us/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/en_us/main.png -------------------------------------------------------------------------------- /Screenshots/en_us/main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/en_us/main1.png -------------------------------------------------------------------------------- /Screenshots/en_us/option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/en_us/option.jpg -------------------------------------------------------------------------------- /Screenshots/en_us/selecte_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/en_us/selecte_skin.png -------------------------------------------------------------------------------- /Screenshots/en_us/taskbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/en_us/taskbar.png -------------------------------------------------------------------------------- /Screenshots/en_us/taskbar_item_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/en_us/taskbar_item_settings.png -------------------------------------------------------------------------------- /Screenshots/image-20250310121048889.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/image-20250310121048889.png -------------------------------------------------------------------------------- /Screenshots/images/image-20221119093529479.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image-20221119093529479.png -------------------------------------------------------------------------------- /Screenshots/images/image-20221119093547649.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image-20221119093547649.png -------------------------------------------------------------------------------- /Screenshots/images/image-20221119094324759.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image-20221119094324759.png -------------------------------------------------------------------------------- /Screenshots/images/image-20221119094501312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image-20221119094501312.png -------------------------------------------------------------------------------- /Screenshots/images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image1.jpg -------------------------------------------------------------------------------- /Screenshots/images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image2.jpg -------------------------------------------------------------------------------- /Screenshots/images/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/image3.jpg -------------------------------------------------------------------------------- /Screenshots/images/item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/images/item.png -------------------------------------------------------------------------------- /Screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/main.png -------------------------------------------------------------------------------- /Screenshots/main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/main1.png -------------------------------------------------------------------------------- /Screenshots/option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/option.jpg -------------------------------------------------------------------------------- /Screenshots/selecte_skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/selecte_skin.png -------------------------------------------------------------------------------- /Screenshots/skins.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/skins.PNG -------------------------------------------------------------------------------- /Screenshots/taskbar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/taskbar.PNG -------------------------------------------------------------------------------- /Screenshots/taskbar_item_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/Screenshots/taskbar_item_settings.png -------------------------------------------------------------------------------- /TrafficMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor.sln -------------------------------------------------------------------------------- /TrafficMonitor/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/AboutDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/AboutDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/AdapterCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/AdapterCommon.cpp -------------------------------------------------------------------------------- /TrafficMonitor/AdapterCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/AdapterCommon.h -------------------------------------------------------------------------------- /TrafficMonitor/AppAlreadyRuningDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/AppAlreadyRuningDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/AppAlreadyRuningDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/AppAlreadyRuningDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/BaseDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/BaseDialog.cpp -------------------------------------------------------------------------------- /TrafficMonitor/BaseDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/BaseDialog.h -------------------------------------------------------------------------------- /TrafficMonitor/CAutoAdaptSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CAutoAdaptSettingsDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CAutoAdaptSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CAutoAdaptSettingsDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/CMFCColorDialogEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CMFCColorDialogEx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CMFCColorDialogEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CMFCColorDialogEx.h -------------------------------------------------------------------------------- /TrafficMonitor/CPUUsage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CPUUsage.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CPUUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CPUUsage.h -------------------------------------------------------------------------------- /TrafficMonitor/CSkinPreviewView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CSkinPreviewView.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CSkinPreviewView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CSkinPreviewView.h -------------------------------------------------------------------------------- /TrafficMonitor/CTabCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CTabCtrlEx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CTabCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CTabCtrlEx.h -------------------------------------------------------------------------------- /TrafficMonitor/CVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CVariant.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CVariant.h -------------------------------------------------------------------------------- /TrafficMonitor/CalendarHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CalendarHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CalendarHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CalendarHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/ClassicalTaskbarDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ClassicalTaskbarDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/ClassicalTaskbarDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ClassicalTaskbarDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/ColorSettingListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ColorSettingListCtrl.cpp -------------------------------------------------------------------------------- /TrafficMonitor/ColorSettingListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ColorSettingListCtrl.h -------------------------------------------------------------------------------- /TrafficMonitor/ColorStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ColorStatic.cpp -------------------------------------------------------------------------------- /TrafficMonitor/ColorStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ColorStatic.h -------------------------------------------------------------------------------- /TrafficMonitor/ComboBox2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ComboBox2.cpp -------------------------------------------------------------------------------- /TrafficMonitor/ComboBox2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ComboBox2.h -------------------------------------------------------------------------------- /TrafficMonitor/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Common.cpp -------------------------------------------------------------------------------- /TrafficMonitor/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Common.h -------------------------------------------------------------------------------- /TrafficMonitor/CommonData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CommonData.cpp -------------------------------------------------------------------------------- /TrafficMonitor/CommonData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/CommonData.h -------------------------------------------------------------------------------- /TrafficMonitor/D2D1Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/D2D1Support.cpp -------------------------------------------------------------------------------- /TrafficMonitor/D2D1Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/D2D1Support.h -------------------------------------------------------------------------------- /TrafficMonitor/D3D10Support1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/D3D10Support1.cpp -------------------------------------------------------------------------------- /TrafficMonitor/D3D10Support1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/D3D10Support1.h -------------------------------------------------------------------------------- /TrafficMonitor/DCompositionSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DCompositionSupport.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DCompositionSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DCompositionSupport.h -------------------------------------------------------------------------------- /TrafficMonitor/DisplayItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DisplayItem.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DisplayItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DisplayItem.h -------------------------------------------------------------------------------- /TrafficMonitor/DisplayTextSettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DisplayTextSettingDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DisplayTextSettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DisplayTextSettingDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/DllFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DllFunctions.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DllFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DllFunctions.h -------------------------------------------------------------------------------- /TrafficMonitor/DrawCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawCommon.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DrawCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawCommon.h -------------------------------------------------------------------------------- /TrafficMonitor/DrawCommonEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawCommonEx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DrawCommonEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawCommonEx.h -------------------------------------------------------------------------------- /TrafficMonitor/DrawCommonFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawCommonFactory.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DrawCommonFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawCommonFactory.h -------------------------------------------------------------------------------- /TrafficMonitor/DrawTextManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawTextManager.cpp -------------------------------------------------------------------------------- /TrafficMonitor/DrawTextManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/DrawTextManager.h -------------------------------------------------------------------------------- /TrafficMonitor/Dxgi1Support2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Dxgi1Support2.cpp -------------------------------------------------------------------------------- /TrafficMonitor/Dxgi1Support2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Dxgi1Support2.h -------------------------------------------------------------------------------- /TrafficMonitor/FileDialogEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/FileDialogEx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/FileDialogEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/FileDialogEx.h -------------------------------------------------------------------------------- /TrafficMonitor/FilePathHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/FilePathHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/FilePathHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/FilePathHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/GeneralSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/GeneralSettingsDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/GeneralSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/GeneralSettingsDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/HResultException.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HResultException.cpp -------------------------------------------------------------------------------- /TrafficMonitor/HResultException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HResultException.h -------------------------------------------------------------------------------- /TrafficMonitor/HighResolutionTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HighResolutionTimer.h -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficCalendarDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficCalendarDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficCalendarDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficCalendarDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficFile.cpp -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficFile.h -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficListCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficListCtrl.cpp -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficListCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficListCtrl.h -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficListDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficListDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/HistoryTrafficListDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/HistoryTrafficListDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/IDrawCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/IDrawCommon.h -------------------------------------------------------------------------------- /TrafficMonitor/IconSelectDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/IconSelectDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/IconSelectDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/IconSelectDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/Image2DEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Image2DEffect.cpp -------------------------------------------------------------------------------- /TrafficMonitor/Image2DEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Image2DEffect.h -------------------------------------------------------------------------------- /TrafficMonitor/IniHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/IniHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/IniHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/IniHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/LinkStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/LinkStatic.cpp -------------------------------------------------------------------------------- /TrafficMonitor/LinkStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/LinkStatic.h -------------------------------------------------------------------------------- /TrafficMonitor/ListCtrlEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ListCtrlEx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/ListCtrlEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ListCtrlEx.h -------------------------------------------------------------------------------- /TrafficMonitor/MainWndColorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/MainWndColorDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/MainWndColorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/MainWndColorDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/MainWndSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/MainWndSettingsDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/MainWndSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/MainWndSettingsDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/MessageDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/MessageDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/MessageDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/MessageDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/NetworkInfoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/NetworkInfoDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/NetworkInfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/NetworkInfoDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/Nullable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Nullable.hpp -------------------------------------------------------------------------------- /TrafficMonitor/OptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/OptionsDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/OptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/OptionsDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/PictureStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PictureStatic.cpp -------------------------------------------------------------------------------- /TrafficMonitor/PictureStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PictureStatic.h -------------------------------------------------------------------------------- /TrafficMonitor/PluginInfoDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginInfoDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/PluginInfoDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginInfoDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/PluginManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginManager.cpp -------------------------------------------------------------------------------- /TrafficMonitor/PluginManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginManager.h -------------------------------------------------------------------------------- /TrafficMonitor/PluginManagerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginManagerDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/PluginManagerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginManagerDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/PluginUpdateHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginUpdateHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/PluginUpdateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/PluginUpdateHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/ReadMe.txt -------------------------------------------------------------------------------- /TrafficMonitor/RenderAPISupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/RenderAPISupport.h -------------------------------------------------------------------------------- /TrafficMonitor/SelectConnectionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SelectConnectionsDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SelectConnectionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SelectConnectionsDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/SetItemOrderDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SetItemOrderDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SetItemOrderDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SetItemOrderDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/SettingsHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SettingsHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SettingsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SettingsHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/SimpleXML.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SimpleXML.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SimpleXML.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SimpleXML.h -------------------------------------------------------------------------------- /TrafficMonitor/SkinAutoAdaptSettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinAutoAdaptSettingDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SkinAutoAdaptSettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinAutoAdaptSettingDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/SkinDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SkinDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/SkinFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinFile.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SkinFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinFile.h -------------------------------------------------------------------------------- /TrafficMonitor/SkinManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinManager.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SkinManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SkinManager.h -------------------------------------------------------------------------------- /TrafficMonitor/SpinEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SpinEdit.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SpinEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SpinEdit.h -------------------------------------------------------------------------------- /TrafficMonitor/StaticEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/StaticEx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/StaticEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/StaticEx.h -------------------------------------------------------------------------------- /TrafficMonitor/StrTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/StrTable.cpp -------------------------------------------------------------------------------- /TrafficMonitor/StrTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/StrTable.h -------------------------------------------------------------------------------- /TrafficMonitor/SupportedRenderEnums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SupportedRenderEnums.cpp -------------------------------------------------------------------------------- /TrafficMonitor/SupportedRenderEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/SupportedRenderEnums.h -------------------------------------------------------------------------------- /TrafficMonitor/TabDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TabDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TabDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TabDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskBarDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskBarDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskBarDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskBarDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskBarDlgDrawCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskBarDlgDrawCommon.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskBarDlgDrawCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskBarDlgDrawCommon.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskBarSettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskBarSettingsDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskBarSettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskBarSettingsDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarColorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarColorDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarColorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarColorDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarDefaultStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarDefaultStyle.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarDefaultStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarDefaultStyle.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarItemOrderHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarItemOrderHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TaskbarItemOrderHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TaskbarItemOrderHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Test.cpp -------------------------------------------------------------------------------- /TrafficMonitor/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Test.h -------------------------------------------------------------------------------- /TrafficMonitor/TinyXml2Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TinyXml2Helper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TinyXml2Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TinyXml2Helper.h -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitor.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitor.h -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitor.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitor.rc -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitor.vcxproj -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitor.vcxproj.filters -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitor.vcxproj.user -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitorDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitorDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/TrafficMonitorDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/TrafficMonitorDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/UpdateHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/UpdateHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/UpdateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/UpdateHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/WIC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WIC.cpp -------------------------------------------------------------------------------- /TrafficMonitor/WIC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WIC.h -------------------------------------------------------------------------------- /TrafficMonitor/Win11TaskbarDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Win11TaskbarDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/Win11TaskbarDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Win11TaskbarDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/Win11TaskbarSettingDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Win11TaskbarSettingDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/Win11TaskbarSettingDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/Win11TaskbarSettingDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/WinVersionHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WinVersionHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/WinVersionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WinVersionHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/WindowsSettingHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WindowsSettingHelper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/WindowsSettingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WindowsSettingHelper.h -------------------------------------------------------------------------------- /TrafficMonitor/WindowsWebExperienceDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WindowsWebExperienceDetector.cpp -------------------------------------------------------------------------------- /TrafficMonitor/WindowsWebExperienceDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WindowsWebExperienceDetector.h -------------------------------------------------------------------------------- /TrafficMonitor/WineTaskbarDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WineTaskbarDlg.cpp -------------------------------------------------------------------------------- /TrafficMonitor/WineTaskbarDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/WineTaskbarDlg.h -------------------------------------------------------------------------------- /TrafficMonitor/auto_start_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/auto_start_helper.cpp -------------------------------------------------------------------------------- /TrafficMonitor/auto_start_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/auto_start_helper.h -------------------------------------------------------------------------------- /TrafficMonitor/crashtool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/crashtool.cpp -------------------------------------------------------------------------------- /TrafficMonitor/crashtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/crashtool.h -------------------------------------------------------------------------------- /TrafficMonitor/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language.h -------------------------------------------------------------------------------- /TrafficMonitor/language/English.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/English.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/German.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/German.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Hebrew.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Hebrew.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Hungarian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Hungarian.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Italian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Italian.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Polish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Polish.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Portuguese_Brazilian.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Portuguese_Brazilian.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Simplified_Chinese.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Simplified_Chinese.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Traditional_Chinese.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Traditional_Chinese.ini -------------------------------------------------------------------------------- /TrafficMonitor/language/Turkish.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/language/Turkish.ini -------------------------------------------------------------------------------- /TrafficMonitor/print_compile_time.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/print_compile_time.bat -------------------------------------------------------------------------------- /TrafficMonitor/res/Acknowledgement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/Acknowledgement.txt -------------------------------------------------------------------------------- /TrafficMonitor/res/Acknowledgement_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/Acknowledgement_en.txt -------------------------------------------------------------------------------- /TrafficMonitor/res/TrafficMonitor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/TrafficMonitor.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/TrafficMonitor.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/TrafficMonitor.rc2 -------------------------------------------------------------------------------- /TrafficMonitor/res/about_background_hd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/about_background_hd.bmp -------------------------------------------------------------------------------- /TrafficMonitor/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/bitmap1.bmp -------------------------------------------------------------------------------- /TrafficMonitor/res/bitmap3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/bitmap3.bmp -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/close.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/close.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/connection.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/connection.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/exit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/exit.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/function.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/function.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/help.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/info.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/info.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/item.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/item.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/lock.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/lock.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/main_window.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/main_window.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/more.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/more.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/mouse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/mouse.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/notify.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/notify.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/pin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/pin.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/plugin_disabled.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/plugin_disabled.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/plugins.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/plugins.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/setting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/setting.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/skn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/skn.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/statistics.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/statistics.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/task_manager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/task_manager.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/menu_icon/taskbar_window.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/menu_icon/taskbar_window.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/notify_preview.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notify_preview.bmp -------------------------------------------------------------------------------- /TrafficMonitor/res/notify_preview_light.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notify_preview_light.bmp -------------------------------------------------------------------------------- /TrafficMonitor/res/notifyicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notifyicon.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/notifyicon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notifyicon2.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/notifyicon3.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notifyicon3.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/notifyicon4.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notifyicon4.ico -------------------------------------------------------------------------------- /TrafficMonitor/res/notifyicon5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/res/notifyicon5.ico -------------------------------------------------------------------------------- /TrafficMonitor/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/resource.h -------------------------------------------------------------------------------- /TrafficMonitor/skins/0默认皮肤/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/0默认皮肤/background.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/0默认皮肤/background_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/0默认皮肤/background_l.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/0默认皮肤/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/0默认皮肤/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/xml_test/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/xml_test/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/xml_test/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/xml_test/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/xml_test/skin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/xml_test/skin.xml -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤01/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤01/background.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤01/background_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤01/background_l.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤01/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤01/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤02/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤02/background.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤02/background_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤02/background_l.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤02/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤02/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤03/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤03/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤03/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤03/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤03/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤03/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤04/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤04/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤04/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤04/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤04/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤04/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤05/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤05/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤05/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤05/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤05/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤05/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤06/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤06/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤06/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤06/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤06/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤06/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤07/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤07/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤07/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤07/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤07/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤07/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤08/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤08/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤08/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤08/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤08/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤08/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤09/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤09/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤09/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤09/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤09/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤09/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤10/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤10/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤10/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤10/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤10/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤10/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤10(竖排)/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤10(竖排)/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤10(竖排)/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤10(竖排)/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤10(竖排)/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤10(竖排)/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤11/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤11/background.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤11/background_l.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤11/background_l.bmp -------------------------------------------------------------------------------- /TrafficMonitor/skins/皮肤11/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/皮肤11/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/skins/默认皮肤2/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/默认皮肤2/background.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/默认皮肤2/background_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/默认皮肤2/background_l.png -------------------------------------------------------------------------------- /TrafficMonitor/skins/默认皮肤2/skin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/skins/默认皮肤2/skin.ini -------------------------------------------------------------------------------- /TrafficMonitor/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/stdafx.cpp -------------------------------------------------------------------------------- /TrafficMonitor/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/stdafx.h -------------------------------------------------------------------------------- /TrafficMonitor/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/targetver.h -------------------------------------------------------------------------------- /TrafficMonitor/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /TrafficMonitor/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/TrafficMonitor/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /UpdateLog/update_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/UpdateLog/update_log.md -------------------------------------------------------------------------------- /UpdateLog/update_log_en-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/UpdateLog/update_log_en-us.md -------------------------------------------------------------------------------- /UpdateLog/update_log_zh-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/UpdateLog/update_log_zh-tw.md -------------------------------------------------------------------------------- /images/image-20250310173257156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/images/image-20250310173257156.png -------------------------------------------------------------------------------- /include/OpenHardwareMonitor/OpenHardwareMonitorApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/include/OpenHardwareMonitor/OpenHardwareMonitorApi.h -------------------------------------------------------------------------------- /include/OpenHardwareMonitor/OpenHardwareMonitorGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/include/OpenHardwareMonitor/OpenHardwareMonitorGlobal.h -------------------------------------------------------------------------------- /include/PluginInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/include/PluginInterface.h -------------------------------------------------------------------------------- /version.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/version.info -------------------------------------------------------------------------------- /version_utf8.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/version_utf8.info -------------------------------------------------------------------------------- /皮肤制作教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongyang219/TrafficMonitor/HEAD/皮肤制作教程.md --------------------------------------------------------------------------------