<SfDialog Width="auto" ShowCloseIcon="true" IsModal="true" @bind-Visible="showDialog">
<DialogEvents OnClose="() => showDialog = false" />
<DialogTemplates>
<Header>Placeholder</Header>
<Content>
<SfComboBox TValue="string" TItem ="string"
FloatLabelType="FloatLabelType.Auto"
Placeholder="Testing placeholder" />
</Content>
</DialogTemplates>
</SfDialog>
<button @onclick="() => showDialog = true">show dialog</button>
@code {
private bool showDialog;
}