BioImager  3.9.1
A .NET microscopy imaging library. Supports various microscopes by using imported libraries & GUI automation. Supported libraries include PriorĀ® & ZeissĀ® & all devices supported by Micromanager 2.0 and python-microscope.
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. More...
 

Protected Member Functions

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

Detailed Description

Definition at line 13 of file Series.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: