|
| void | UpdateItems () |
| | It clears the listbox and then adds all the items in the Images class to the listbox. More...
|
| |
|
| override void | Dispose (bool disposing) |
| | Clean up any resources being used. More...
|
| |
Definition at line 13 of file Series.cs.
◆ Series()
| BioImager.Series.Series |
( |
| ) |
|
Definition at line 15 of file Series.cs.
16 {
17 InitializeComponent();
19 }
void UpdateItems()
It clears the listbox and then adds all the items in the Images class to the listbox.
◆ Dispose()
| override void BioImager.Series.Dispose |
( |
bool |
disposing | ) |
|
|
protected |
Clean up any resources being used.
- Parameters
-
| disposing | true if managed resources should be disposed; otherwise, false. |
Definition at line 14 of file Series.Designer.cs.
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
◆ UpdateItems()
| void BioImager.Series.UpdateItems |
( |
| ) |
|
It clears the listbox and then adds all the items in the Images class to the listbox.
Definition at line 22 of file Series.cs.
23 {
24 imagesBox.Items.Clear();
25 foreach (BioImage item in Images.images)
26 {
27 imagesBox.Items.Add(item);
28 }
29 }
The documentation for this class was generated from the following files: