BioGTK  6.0.0
A .NET library & program for annotating, editing various microscopy imaging formats using Bioformats supported images. Including whole slide, pyramidal, and series.
All Classes Namespaces Functions
BioGTK.About Class Reference
Inheritance diagram for BioGTK.About:

Static Public Member Functions

static About Create ()
 

Protected Member Functions

 About (Builder builder, IntPtr handle)
 

Detailed Description

Definition at line 14 of file About.cs.

Constructor & Destructor Documentation

◆ About()

BioGTK.About.About ( Builder builder,
IntPtr handle )
protected

Definition at line 40 of file About.cs.

40 : base(handle)
41 {
42 _builder = builder;
43 builder.Autoconnect(this);
44 string s = System.IO.Path.GetDirectoryName(Environment.ProcessPath) + "/";
45 pixbuf = new Pixbuf(s + "Images/banner.jpg");
46 label.Text = "BioGTK " + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() + " by Erik Repo, Github.com/BiologyTools/BioGTK.";
47 image.Drawn += Image_Drawn;
48 App.ApplyStyles(this);
49 }

Member Function Documentation

◆ Create()

static About BioGTK.About.Create ( )
static

It creates a new instance of the About class.

Returns
A new instance of the About class.

Definition at line 32 of file About.cs.

33 {
34 Builder builder = new Builder(new FileStream(System.IO.Path.GetDirectoryName(Environment.ProcessPath) + "/" + "Glade/About.glade", FileMode.Open));
35 return new About(builder, builder.GetObject("about").Handle);
36 }

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