Mono.Addins.Gui.AddinInfoView.AddinInfoView C# (CSharp) Method

AddinInfoView() public method

public AddinInfoView ( ) : System
return System
        public AddinInfoView()
        {
            this.Build ();
            AllowInstall = true;
            titleWidth = labelName.SizeRequest ().Width;

            HeaderBox hb = new HeaderBox (1,1,1,1);
            hb.Show ();
            hb.Replace (this);

            hb = new HeaderBox (1,0,0,0);
            hb.SetPadding (6,6,6,6);
            hb.Show ();
            hb.GradientBackround = true;
            hb.Replace (eboxButs);

            hb = new HeaderBox (0,1,0,0);
            hb.SetPadding (6,6,6,6);
            hb.Show ();
            hb.GradientBackround = true;
            hb.Replace (boxHeader);
            topHeaderBox = hb;
        }