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
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | 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