BioImager  4.9.0
A .NET microscopy imaging application based on Bio library. Supports various microscopes by using imported libraries & GUI automation. Supports XInput game controllers to move stage, take images, run ImageJ macros on images or Bio C# scripts.
Loading...
Searching...
No Matches
BioImager.Series Class Reference
Inheritance diagram for BioImager.Series:

Public Member Functions

void UpdateItems ()
 It clears the listbox and then adds all the items in the Images class to the listbox.
 

Protected Member Functions

override void Dispose (bool disposing)
 Clean up any resources being used.
 

Detailed Description

Definition at line 3 of file Series.Designer.cs.

Constructor & Destructor Documentation

◆ 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.
Definition Series.cs:22

Member Function Documentation

◆ Dispose()

override void BioImager.Series.Dispose ( bool disposing)
protected

Clean up any resources being used.

Parameters
disposingtrue 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: