Skip to main content
All docs
V26.1
  • PopupWindowTemplateSizeController.SavePopupSettings Property

    Specifies whether XAF stores popup settings in the Application Model.

    Namespace: DevExpress.ExpressApp.Blazor.SystemModule

    Assembly: DevExpress.ExpressApp.Blazor.v26.1.dll

    NuGet Package: DevExpress.ExpressApp.Blazor

    Declaration

    public static bool SavePopupSettings { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to store popup settings in the Application Model; otherwise, false.

    Remarks

    A pop-up window in an XAF Blazor application can be resized in code and in the UI. Enable the SavePopupSettings property to save popup settings in the Application Model.

    using DevExpress.ExpressApp.Blazor.SystemModule;
    
    public class Startup {
        public Startup(IConfiguration configuration) {
            Configuration = configuration;
            PopupWindowTemplateSizeController.SavePopupSettings = true;
        }
    // ...
    
    See Also