Skip to content

Commit ef8f2e7

Browse files
committed
Close #104
1 parent 3529db7 commit ef8f2e7

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

Source/NETworkManager/Models/Settings/SettingsInfo.cs

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2375,7 +2375,61 @@ public AutoRefreshTimeInfo ARPTable_AutoRefreshTime
23752375
#region Constructor
23762376
public SettingsInfo()
23772377
{
2378+
// IP Scanner
2379+
IPScanner_IPRangeHistory.CollectionChanged += CollectionChanged;
23782380

2381+
// Port Scanner
2382+
PortScanner_HostHistory.CollectionChanged += CollectionChanged;
2383+
PortScanner_PortHistory.CollectionChanged += CollectionChanged;
2384+
2385+
// Ping
2386+
Ping_HostHistory.CollectionChanged += CollectionChanged;
2387+
2388+
// Traceroute
2389+
Traceroute_HostHistory.CollectionChanged += CollectionChanged;
2390+
2391+
// DNS Lookup
2392+
DNSLookup_HostHistory.CollectionChanged += CollectionChanged;
2393+
2394+
// Remote Desktop
2395+
RemoteDesktop_HostHistory.CollectionChanged += CollectionChanged;
2396+
2397+
// PuTTY
2398+
PuTTY_HostHistory.CollectionChanged += CollectionChanged;
2399+
PuTTY_SerialLineHistory.CollectionChanged += CollectionChanged;
2400+
PuTTY_PortHistory.CollectionChanged += CollectionChanged;
2401+
PuTTY_BaudHistory.CollectionChanged += CollectionChanged;
2402+
PuTTY_UsernameHistory.CollectionChanged += CollectionChanged;
2403+
PuTTY_ProfileHistory.CollectionChanged += CollectionChanged;
2404+
2405+
// SNMP
2406+
SNMP_HostHistory.CollectionChanged += CollectionChanged;
2407+
SNMP_OIDHistory.CollectionChanged += CollectionChanged;
2408+
2409+
// HTTP Header
2410+
HTTPHeaders_WebsiteUriHistory.CollectionChanged += CollectionChanged;
2411+
2412+
// Subnet Calculator / Calculator
2413+
SubnetCalculator_Calculator_SubnetHistory.CollectionChanged += CollectionChanged;
2414+
2415+
// Subnet Calculator / Subnetting
2416+
SubnetCalculator_Subnetting_SubnetHistory.CollectionChanged += CollectionChanged;
2417+
SubnetCalculator_Subnetting_NewSubnetmaskOrCIDRHistory.CollectionChanged += CollectionChanged;
2418+
2419+
// Subnet Calculator / Supernetting
2420+
SubnetCalculator_Supernetting_Subnet1.CollectionChanged += CollectionChanged;
2421+
SubnetCalculator_Supernetting_Subnet2.CollectionChanged += CollectionChanged;
2422+
2423+
// Lookup / OUI
2424+
Lookup_OUI_MACAddressOrVendorHistory.CollectionChanged += CollectionChanged;
2425+
2426+
// Lookup / Port
2427+
Lookup_Port_PortsHistory.CollectionChanged += CollectionChanged;
2428+
}
2429+
2430+
private void CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
2431+
{
2432+
SettingsChanged = true;
23792433
}
23802434
#endregion
23812435
}

0 commit comments

Comments
 (0)