21 references to BlazorWebView
Microsoft.AspNetCore.Components.WebView.Wpf (21)
BlazorWebView.cs (18)
35
ownerType: typeof(
BlazorWebView
),
44
ownerType: typeof(
BlazorWebView
),
53
ownerType: typeof(
BlazorWebView
));
61
ownerType: typeof(
BlazorWebView
),
70
ownerType: typeof(
BlazorWebView
));
78
ownerType: typeof(
BlazorWebView
));
86
ownerType: typeof(
BlazorWebView
));
99
FocusableProperty.OverrideMetadata(typeof(
BlazorWebView
), new FrameworkPropertyMetadata(false));
103
IsTabStopProperty.OverrideMetadata(typeof(
BlazorWebView
), new FrameworkPropertyMetadata(OnIsTabStopPropertyChanged));
107
/// Creates a new instance of <see cref="
BlazorWebView
"/>.
129
/// is controlled by the <see cref="
BlazorWebView
"/> that is hosting it.
198
private static void OnServicesPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) => ((
BlazorWebView
)d).OnServicesPropertyChanged(e);
202
private static void OnHostPagePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) => ((
BlazorWebView
)d).OnHostPagePropertyChanged(e);
206
private static void OnIsTabStopPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) => ((
BlazorWebView
)d).OnIsTabStopPropertyChanged(e);
253
var logger = Services.GetService<ILogger<
BlazorWebView
>>() ?? NullLogger<
BlazorWebView
>.Instance;
333
/// Creates a file provider for static assets used in the <see cref="
BlazorWebView
"/>. The default implementation
381
/// Allows asynchronous disposal of the <see cref="
BlazorWebView
" />.
RootComponent.cs (2)
12
/// Describes a root component that can be added to a <see cref="
BlazorWebView
"/>.
18
/// This must be unique among the root components within the <see cref="
BlazorWebView
"/>.
src\BlazorWebView\src\SharedSource\BlazorWebViewServiceCollectionExtensions.cs (1)
23
/// Configures <see cref="IServiceCollection"/> to add support for <see cref="
BlazorWebView
"/>.