Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/Demo/Shared/Pages/Dialog/DialogPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
<code>&lt;FluentDialog&gt;</code> wraps the <code>&lt;fluent-dialog&gt;</code> element, a web component implementation of a dialog leveraging
the Fluent UI design system. <code>&lt;FluentDialog&gt;</code> acts as a shell for the dialog content, which can be specified in a number of ways.
</p>
<p>
Note: Dialogs are always displayed centered. The left/right positioning only works for Panels.
</p>
<h2>DialogService</h2>
<p>
The <code>DialogService</code> is a service which is used to show different types of dialogs. It is registered as a scoped service, so it can be injected into
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class DialogParameters : ComponentParameters, IDialogParameters
/// left (full height), right (full height)
/// or screen middle (using Width and Height properties).
/// HorizontalAlignment.Stretch is not supported for this property.
/// NOTE: Left/Right only works for Panels, not Dialogs, which are always centered.
/// </summary>
public virtual HorizontalAlignment Alignment
{
Expand Down
Loading