You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tabcontrol-extra/TabControlExtra/TabControl/TabControlExtra.cs line 238
if (this.Alignment <= TabAlignment.Bottom)
{
itemHeight = this.ItemSize.Height;
}
else
{
itemHeight = this.ItemSize.Width;
}
fix:
itemHeight = this.ItemSize.Height;
if Aligment=left and SizeMode=Fixed
rect = new Rectangle(tabStripHeight, 2, Width - tabStripHeight - 2, Height - 4)
rect .x must is this.ItemSize.Height
The text was updated successfully, but these errors were encountered:
Charltsing
changed the title
Aligment=left, DisplayRectangle is error
Aligment=left, DisplayRectangle is error when Aligment=left and SizeMode=Fixed
Aug 25, 2019
tabcontrol-extra/TabControlExtra/TabControl/TabControlExtra.cs line 238
if (this.Alignment <= TabAlignment.Bottom)
{
itemHeight = this.ItemSize.Height;
}
else
{
itemHeight = this.ItemSize.Width;
}
fix:
itemHeight = this.ItemSize.Height;
if Aligment=left and SizeMode=Fixed
rect = new Rectangle(tabStripHeight, 2, Width - tabStripHeight - 2, Height - 4)
rect .x must is this.ItemSize.Height
The text was updated successfully, but these errors were encountered: