BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<EjsDialog>
<DialogTemplates>
<Header> @Header </Header>
<Content> @Content </Content>
</DialogTemplates>
</EjsDialog>
@code {
[Parameter]
public string Header { get; set; } = "";
[Parameter]
|
@code {
public string DlgHeader { get; set; } = "";
public string DlgContent { get; set; } = "";
this.DlgHeader = "Confirm";
this.DlgContent = "Are you want to close this confirm Dialog ?";
}
|
<EjsDialog></EjsDialog>
@code {
public void Show()
{
this.DialogObj.Show();
}
}
|
<ReusableDialog @ref="ConfirmDialog"> </ReusableDialog>
@code {
this.ConfirmDialog.Show();
}
|