app {
position: fixed;
left: 0;
right: 0;
bottom: 0;
top: 0;
} |
app {
position: relative;
left: 0;
right: 0;
bottom: 0;
top: 0;
} |
<SfDialog Width="300px" Target="app" AllowDragging="true" EnableResize="true" ShowCloseIcon="true" IsModal="true" @bind-Visible="Visibility">
<DialogTemplates>
<Header> Resize Me!!!</Header>
<Content> This is a dialog with resizable support. </Content>
</DialogTemplates>
<DialogEvents OnOpen="@DialogOpen" Closed="@DialogClose"></DialogEvents>
</SfDialog> |