TabAlignment.Left on TabControl with new release

0
0

Hello,

with the new release 1.5.16 the TabAlignment.Left on TabControl has a different render (i’ve atached screencaps of the design view wich was the previeus render and the actual render)

and this is the design code

this.tabPrincipal.Alignment = Wisej.Web.TabAlignment.Left;
resources.ApplyResources(this.tabPrincipal, “tabPrincipal”);
this.tabPrincipal.BorderStyle = Wisej.Web.BorderStyle.None;
this.tabPrincipal.Controls.Add(this.pGestion);
this.tabPrincipal.Controls.Add(this.pPlanification);
this.tabPrincipal.Controls.Add(this.pTempo);
this.tabPrincipal.Controls.Add(this.pCRM);
this.tabPrincipal.Controls.Add(this.pAnalyse);
this.tabPrincipal.Name = “tabPrincipal”;
this.tabPrincipal.PageInsets = new Wisej.Web.Padding(35, 0, 0, 0);
this.tabPrincipal.SelectedIndexChanged += new System.EventHandler(this.tabPrincipal_SelectedIndexChanged);

 

is there a different way in the new release to have the previeux render ?

 

Thanks a lot

 

 

Attachment
  • You must to post comments
0
0

Thanks a lot!

Clear, fast and perfect answer.

  • You must to post comments
0
0

Hi Henry,

I think, you’ve missed the Orientation property. When I set it to Vertical the TabPages are shown like on your first image.

this.tabControl1.Orientation = Wisej.Web.Orientation.Vertical;

this.tabControl1.Alignment = Wisej.Web.TabAlignment.Left;

Best,

Jens

Attachment
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.