Example #1
0
 public BandButton(string caption, BandTagInfo bti)
 {
     Text=caption;
     FlatStyle=FlatStyle.Standard;
     Visible=true;
     this.bti=bti;
     Click+=new EventHandler(SelectBand);
 }
Example #2
0
 public BandPanel(string caption, ContentPanel content, BandTagInfo bti)
 {
     BandButton bandButton=new BandButton(caption, bti);
     Controls.Add(bandButton);
     Controls.Add(content);
 }
Example #3
0
 public void AddBand(string caption, ContentPanel content)
 {
     content.outlookBar=this;
     int index=Controls.Count;
     BandTagInfo bti=new BandTagInfo(this, index);
     BandPanel bandPanel=new BandPanel(caption, content, bti);
     Controls.Add(bandPanel);
     UpdateBarInfo();
     RecalcLayout(bandPanel, index);
 }