We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606f67b commit 01b9ad4Copy full SHA for 01b9ad4
src/BootstrapBlazor/Components/Modal/ModalDialog.razor.cs
@@ -331,6 +331,18 @@ protected override void OnParametersSet()
331
ExportPdfButtonOptions.Icon ??= IconTheme.GetIconByKey(ComponentIcons.TableExportPdfIcon);
332
333
MaximizeIconString = MaximizeWindowIcon;
334
+
335
+ if (FullScreenSize != FullScreenSize.None)
336
+ {
337
+ ShowMaximizeButton = false;
338
+ ShowResize = false;
339
+ IsDraggable = false;
340
+ }
341
+ else if (ShowMaximizeButton)
342
343
344
345
346
}
347
348
/// <summary>
0 commit comments