About (Builder builder, IntPtr handle)
Definition at line 14 of file About.cs .
◆ 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 }
◆ 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: