Called when the form is first loaded. We initialize controls here. Event sender. Event arguments.
(object sender, EventArgs e)
| 639 | /// <param name="sender">Event sender.</param> |
| 640 | /// <param name="e">Event arguments.</param> |
| 641 | private void MainForm_Load(object sender, EventArgs e) |
| 642 | { |
| 643 | // Load settings in the form. |
| 644 | LoadUserSettings(); |
| 645 | |
| 646 | // Perform an initial button update. |
| 647 | UpdatePluginButtons(); |
| 648 | } |
| 649 | |
| 650 | /// <summary> |
| 651 | /// Called when the user clicks the "Apply" button. We'll need to save |
nothing calls this directly
no outgoing calls
no test coverage detected