Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Minor issue setting tabbar height

    SmartClient_v100p_2014-12-13_Pro

    I increased the tabbar height for an application that will be used on a tablet. It was straightforward, I just added:
    Code:
        <tabBarProperties>
            <height>30</height>
        </tabBarProperties>
    to the tabset definition.
    This works well except that the tabbar baseline in not rendered correctly. You can highlight the problem by increasing the baseline thickness:
    Code:
        <tabBarProperties>
            <height>30</height>
            <baseLineThickness>5</baseLineThickness>
        </tabBarProperties>
    The baseline is drawn correctly underneath the tabs, but it is drawn at the wrong height in the part of the tabbar where there are no tabs.

    Andrew

    #2
    Use tabBarThickness to customize how thick the tabBar is rather than directly customizing the tabBar AutoChild.

    If you still see a problem, let us know which skin you are using, and first be sure the problem is reproducible in the unmodified SDK.

    Comment

    Working...
    X