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.ImageWindow Class Reference
Inheritance diagram for BioImager.ImageWindow:

Public Member Functions

 ImageWindow (BioImage im)
 

Protected Member Functions

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

Detailed Description

Definition at line 13 of file ImageWindow.cs.

Constructor & Destructor Documentation

◆ ImageWindow()

BioImager.ImageWindow.ImageWindow ( BioImage  im)

Definition at line 16 of file ImageWindow.cs.

17 {
18 InitializeComponent();
19 ImageView iv = new ImageView(im);
20 iv.Dock = DockStyle.Fill;
21 this.Controls.Add(iv);
22 this.Text = System.IO.Path.GetFileName(im.ID);
23 this.Size = new Size(im.SizeX, im.SizeY);
24 this.Show();
25 }

Member Function Documentation

◆ Dispose()

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

Clean up any resources being used.

Parameters
disposingtrue if managed resources should be disposed; otherwise, false.

Definition at line 15 of file ImageWindow.Designer.cs.

16 {
17 if (disposing && (components != null))
18 {
19 components.Dispose();
20 }
21 base.Dispose(disposing);
22 }

The documentation for this class was generated from the following files: