Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+
    • The page you are viewing does not exist in the .NET 8.0+ platform documentation. This link will take you to the parent topic of the current section.

    WebApplicationStyleManager.EnableTreeListColumnsUpperCase Property

    Specifies whether or not the upper case is used for Tree List column captions in the new web UI.

    Namespace: DevExpress.ExpressApp.Web

    Assembly: DevExpress.ExpressApp.Web.v25.1.dll

    NuGet Package: DevExpress.ExpressApp.Web

    Declaration

    public static bool EnableTreeListColumnsUpperCase { get; set; }

    Property Value

    Type Description
    Boolean

    true, if the upper case is enabled for Tree List column captions; otherwise, false.

    Remarks

    By default, in XAF ASP.NET Web Forms applications, the upper case is enabled for Tree List column captions. The following code snippet demonstrates how to disable it.

    protected void Session_Start(Object sender, EventArgs e) {
        //...
        WebApplication.Instance.SwitchToNewStyle();
        WebApplicationStyleManager.EnableTreeListColumnsUpperCase = false;
        WebApplication.Instance.Setup();
        WebApplication.Instance.Start();
    }
    

    The result is demonstrated in the image below.

    EnableTreeListColumnsUpperCase

    Tip

    You can also disable the upper case for the grid column, Tree List column, layout group, and navigation group captions at once, using the WebApplicationStyleManager.EnableUpperCase property.

    See Also