DXPopupService.AddTransient<TPopupView, TPopupViewModel>(IServiceCollection) Method
Registers a popup view and its View Model as transient services in the dependency injection container.
Namespace: DevExpress.Maui.Controls
Assembly: DevExpress.Maui.Controls.dll
NuGet Package: DevExpress.Maui.Controls
Declaration
public static void AddTransient<TPopupView, TPopupViewModel>(
IServiceCollection services
)
where TPopupView : DXPopupBase where TPopupViewModel : IDXPopupViewModel
Parameters
Name | Type | Description |
---|---|---|
services | IServiceCollection | The collection of services used to register transient services for a popup view and its View Model. |
Type Parameters
Name | Description |
---|---|
TPopupView | The popup view type. |
TPopupViewModel | The popup View Model type. |
See Also