문제

I can never remember if I have to implement an interface on the page or the info, or if I have to override something. I want it here so I don't have to dig up an old solution. Also, is this information available anywhere in EWL comments or on the EWL web site?

도움이 되었습니까?

해결책

You need to implement TabModeOverrider from your entity setup's Info class:

partial class Info: TabModeOverrider {
    TabMode TabModeOverrider.GetTabMode() {
        return TabMode.Horizontal;
    }
}

I don't think this is documented anywhere else right now.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top