Я использую Microsoft.Toolkit.Forms.UI.Controls.WebView
, доступный с https://www.nuget.org/packages/Microsoft.Toolkit.Forms.UI.Controls.WebView
Я добавил WebView в свое приложение WinForms - Код конструктора:
namespace Testing
{
partial class TestForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.pnlWebPage = new System.Windows.Forms.Panel();
this.webView = new Microsoft.Toolkit.Forms.UI.Controls.WebView();
this.pnlWebPage.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.webView)).BeginInit();
this.SuspendLayout();
//
// pnlWebPage
//
this.pnlWebPage.Controls.Add(this.webView);
this.pnlWebPage.Dock = System.Windows.Forms.DockStyle.Fill;
this.pnlWebPage.Location = new System.Drawing.Point(0, 101);
this.pnlWebPage.Margin = new System.Windows.Forms.Padding(4);
this.pnlWebPage.Name = "pnlWebPage";
this.pnlWebPage.Size = new System.Drawing.Size(1205, 624);
this.pnlWebPage.TabIndex = 3;
//
// webView
//
this.webView.Dock = System.Windows.Forms.DockStyle.Fill;
this.webView.Location = new System.Drawing.Point(0, 0);
this.webView.Margin = new System.Windows.Forms.Padding(4);
this.webView.MinimumSize = new System.Drawing.Size(27, 25);
this.webView.Name = "webView";
this.webView.Size = new System.Drawing.Size(1205, 624);
this.webView.Source = new System.Uri("https://www.bbc.com", System.UriKind.Absolute);
this.webView.TabIndex = 0;
this.webView.NavigationCompleted += new System.EventHandler<Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT.WebViewControlNavigationCompletedEventArgs>(this.webView_NavigationCompleted);
//
// TestForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1505, 725);
this.Controls.Add(this.pnlWebPage);
this.Margin = new System.Windows.Forms.Padding(4);
this.Name = "TestForm";
this.Text = "TestForm";
this.pnlWebPage.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.webView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel pnlWebPage;
private Microsoft.Toolkit.Forms.UI.Controls.WebView webView;
}
}
Один раз веб-сайт загружен в WebView, я хочу иметь возможность извлечь HTML страницы и сохранить его как строку или что-то подобное.
Я добавил следующий метод, который вызывается, когда WebView * Событие 1012 * происходит.
private async void wvLI_NavigationCompleted(object sender, Microsoft.Toolkit.Win32.UI.Controls.Interop.WinRT.WebViewControlNavigationCompletedEventArgs e)
{
\\ HTML extraction to go here
}
Однако я не вижу способа получить доступ к HTML - похоже, для него нет свойства или чего-то подобного. Исследуя, как это сделать, я могу найти только вопросы и ответы, касающиеся Android или Xamarin - и ни одно из решений для них не работает для Microsoft Toolkit WebView. Кто-нибудь знает, как я могу этого добиться?