You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Shows a modal dialog. To use, a <see cref="DialogHost"/> instance must be in a visual tree (typically this may be specified towards the root of a Window's XAML).
109
107
/// </summary>
110
108
/// <param name="content">Content to show (can be a control or view model).</param>
111
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
112
109
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
113
110
publicstaticTask<object?>Show(objectcontent)
114
111
=>Show(content,null,null);
@@ -118,7 +115,6 @@ static DialogHost()
118
115
/// </summary>
119
116
/// <param name="content">Content to show (can be a control or view model).</param>
120
117
/// <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
121
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
122
118
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="content">Content to show (can be a control or view model).</param>
130
126
/// <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
131
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
132
127
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="content">Content to show (can be a control or view model).</param>
140
135
/// <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
141
136
/// <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
142
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
143
137
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
152
146
/// <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
153
147
/// <param name="closedEventHandler">Allows access to closed event which would otherwise have been subscribed to on a instance.</param>
154
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
155
148
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="content">Content to show (can be a control or view model).</param>
163
156
/// <param name="dialogIdentifier"><see cref="Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifier set in XAML. <c>null</c> is allowed.</param>
164
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
165
157
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="content">Content to show (can be a control or view model).</param>
173
165
/// <param name="dialogIdentifier"><see cref="Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifier set in XAML. <c>null</c> is allowed.</param>
174
166
/// <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
175
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
176
167
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="content">Content to show (can be a control or view model).</param>
184
175
/// <param name="dialogIdentifier"><see cref="Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifier set in XAML. <c>null</c> is allowed.</param>
185
176
/// <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
186
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
187
177
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="dialogIdentifier"><see cref="Identifier"/> of the instance where the dialog should be shown. Typically this will match an identifier set in XAML. <c>null</c> is allowed.</param>
196
186
/// <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
197
187
/// <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
198
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
199
188
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
/// <param name="openedEventHandler">Allows access to opened event which would otherwise have been subscribed to on a instance.</param>
209
198
/// <param name="closingEventHandler">Allows access to closing event which would otherwise have been subscribed to on a instance.</param>
210
199
/// <param name="closedEventHandler">Allows access to closed event which would otherwise have been subscribed to on a instance.</param>
211
-
/// <param name="isFullscreenDialog">Controls whether the dialog is fullscreen or not.</param>
212
200
/// <returns>Task result is the parameter used to close the dialog, typically what is passed to the <see cref="CloseDialogCommand"/> command.</returns>
0 commit comments