@@ -625,6 +625,23 @@ public double IPScanner_ProfileWidth
625625 SettingsChanged = true ;
626626 }
627627 }
628+
629+ private bool _ipScanner_ShowStatistics = true ;
630+ public bool IPScanner_ShowStatistics
631+ {
632+ get { return _ipScanner_ShowStatistics ; }
633+ set
634+ {
635+ if ( value == _ipScanner_ShowStatistics )
636+ return ;
637+
638+ _ipScanner_ShowStatistics = value ;
639+
640+ OnPropertyChanged ( ) ;
641+
642+ SettingsChanged = true ;
643+ }
644+ }
628645 #endregion
629646
630647 #region PortScanner
@@ -753,6 +770,23 @@ public double PortScanner_ProfileWidth
753770 SettingsChanged = true ;
754771 }
755772 }
773+
774+ private bool _portScanner_ShowStatistics = true ;
775+ public bool PortScanner_ShowStatistics
776+ {
777+ get { return _portScanner_ShowStatistics ; }
778+ set
779+ {
780+ if ( value == _portScanner_ShowStatistics )
781+ return ;
782+
783+ _portScanner_ShowStatistics = value ;
784+
785+ OnPropertyChanged ( ) ;
786+
787+ SettingsChanged = true ;
788+ }
789+ }
756790 #endregion
757791
758792 #region Ping
@@ -923,6 +957,23 @@ public double Ping_ProfileWidth
923957 SettingsChanged = true ;
924958 }
925959 }
960+
961+ private bool _ping_ShowStatistics = true ;
962+ public bool Ping_ShowStatistics
963+ {
964+ get { return _ping_ShowStatistics ; }
965+ set
966+ {
967+ if ( value == _ping_ShowStatistics )
968+ return ;
969+
970+ _ping_ShowStatistics = value ;
971+
972+ OnPropertyChanged ( ) ;
973+
974+ SettingsChanged = true ;
975+ }
976+ }
926977 #endregion
927978
928979 #region Traceroute
@@ -1054,6 +1105,23 @@ public double Traceroute_ProfileWidth
10541105 SettingsChanged = true ;
10551106 }
10561107 }
1108+
1109+ private bool _traceroute_ShowStatistics = true ;
1110+ public bool Traceroute_ShowStatistics
1111+ {
1112+ get { return _traceroute_ShowStatistics ; }
1113+ set
1114+ {
1115+ if ( value == _traceroute_ShowStatistics )
1116+ return ;
1117+
1118+ _traceroute_ShowStatistics = value ;
1119+
1120+ OnPropertyChanged ( ) ;
1121+
1122+ SettingsChanged = true ;
1123+ }
1124+ }
10571125 #endregion
10581126
10591127 #region DNS Lookup
@@ -1280,6 +1348,23 @@ public bool DNSLookup_ExpandStatistics
12801348 SettingsChanged = true ;
12811349 }
12821350 }
1351+
1352+ private bool _dnsLookup_ShowStatistics = true ;
1353+ public bool DNSLookup_ShowStatistics
1354+ {
1355+ get { return _dnsLookup_ShowStatistics ; }
1356+ set
1357+ {
1358+ if ( value == _dnsLookup_ShowStatistics )
1359+ return ;
1360+
1361+ _dnsLookup_ShowStatistics = value ;
1362+
1363+ OnPropertyChanged ( ) ;
1364+
1365+ SettingsChanged = true ;
1366+ }
1367+ }
12831368 #endregion
12841369
12851370 #region RemoteDesktop
@@ -1962,6 +2047,23 @@ public SNMPv3PrivacyProvider SNMP_PrivacyProvider
19622047 SettingsChanged = true ;
19632048 }
19642049 }
2050+
2051+ private bool _snmp_ShowStatistics = true ;
2052+ public bool SNMP_ShowStatistics
2053+ {
2054+ get { return _snmp_ShowStatistics ; }
2055+ set
2056+ {
2057+ if ( value == _snmp_ShowStatistics )
2058+ return ;
2059+
2060+ _snmp_ShowStatistics = value ;
2061+
2062+ OnPropertyChanged ( ) ;
2063+
2064+ SettingsChanged = true ;
2065+ }
2066+ }
19652067 #endregion
19662068
19672069 #region WakeOnLAN
@@ -2051,6 +2153,23 @@ public bool HTTPHeaders_ExpandStatistics
20512153 SettingsChanged = true ;
20522154 }
20532155 }
2156+
2157+ private bool _httpHeaders_ShowStatistics = true ;
2158+ public bool HTTPHeaders_ShowStatistics
2159+ {
2160+ get { return _httpHeaders_ShowStatistics ; }
2161+ set
2162+ {
2163+ if ( value == _httpHeaders_ShowStatistics )
2164+ return ;
2165+
2166+ _httpHeaders_ShowStatistics = value ;
2167+
2168+ OnPropertyChanged ( ) ;
2169+
2170+ SettingsChanged = true ;
2171+ }
2172+ }
20542173 #endregion
20552174
20562175 #region Subnet Calculator
0 commit comments