Coding for Package Manager.

This commit is contained in:
Bruce
2026-01-20 22:34:22 +08:00
parent 7483ed6930
commit 75cb72964d
71 changed files with 5518 additions and 13351 deletions
+14
View File
@@ -0,0 +1,14 @@
// IEHelper.h
#pragma once
using namespace System;
using IEWebView = System::Windows::Forms::WebBrowser;
namespace IEHelper {
public ref class WebBrowserHelper
{
public:
static int GetPageScale (IEWebView ^webui);
static void SetPageScale (IEWebView ^webui, int zoom);
};
}