1 instantiation of RootComponent
Microsoft.AspNetCore.Components.WebView.WindowsForms (1)
RootComponentCollectionExtensions.cs (1)
26 components.Add(new RootComponent(selector, typeof(TComponent), parameters));
9 references to RootComponent
Microsoft.AspNetCore.Components.WebView.WindowsForms (9)
BlazorWebView.cs (6)
99 /// A collection of <see cref="RootComponent"/> instances that specify the Blazor <see cref="IComponent"/> types 209 foreach (var rootComponent in RootComponents) 229 var newItems = (eventArgs.NewItems ?? Array.Empty<object>()).Cast<RootComponent>(); 230 var oldItems = (eventArgs.OldItems ?? Array.Empty<object>()).Cast<RootComponent>(); 232 foreach (var item in newItems.Except(oldItems)) 237 foreach (var item in oldItems.Except(newItems))
RootComponent.cs (1)
17 /// Constructs an instance of <see cref="RootComponent"/>.
RootComponentsCollection.cs (2)
10 /// A collection of <see cref="RootComponent"/> items. 12 public class RootComponentsCollection : ObservableCollection<RootComponent>, IJSComponentConfiguration