| | |
| | | |
| | | private void btnConfig_Click(object sender, EventArgs e) |
| | | { |
| | | config.CommunicatorsName = this.Name; |
| | | config.ProductName = GlobalVar.strProductName; |
| | | using (var configForm = new ConfigForm(config, GlobalVar.allPlcSettingPath + "\\" + this.Name + ".json")) |
| | | { |
| | | if (configForm.ShowDialog() == DialogResult.OK) |
| | | { |
| | | config = S7ConfigService.LoadConfig(GlobalVar.allPlcSettingPath); |
| | | config = S7ConfigService.LoadConfig(GlobalVar.allPlcSettingPath + "\\" + this.Name + ".json"); |
| | | LoadConfigAndSetupGrid(); |
| | | UpdateConnectionStatus(); |
| | | } |