Delphi Can

Orjinalini görmek için tıklayınız: EDGE BROWSER
Şu anda (Arşiv) modunu görüntülemektesiniz. Orjinal Sürümü Görüntüle internal link
Arkadaşlar Merhaba

Ben Delphi İçerisine Edge Webtarayıcıyı MANUEL KURMAK İSTİYORUM

Elimde " WebView2Loader " DLL  dosyası mevcut fakat bunu nerede nasıl
kullanacağımı bulamadım.

Embercadaro Sitesinde Manuel Yükleme İle Alakalı Şöyle Bir Yazı Var Aşağıya Yazıcam
AMA ANLAMDIM YARDIMCI OLABİLİRMİSİNİZ LÜTFEN Sad

--------------------------------------------------------------------

Manually Installing the Edge WebView2 package from NuGet

The Edge WebView2 browser control is available from NuGet at https://www.nuget.org/packages/Microsoft.Web.WebView2 under the name Microsoft.Web.WebView2. The component is currently written against version 0.9.430.
On this page, https://www.nuget.org/packages/Microsoft...w2/0.9.430, you can click the Download package link to download microsoft.web.webview2.0.9.430.nupkg.
A .nupkg file is really just a .zip file with a different file extension so you can rename it to microsoft.web.webview2.0.9.430.zip and extract the content with the Windows File Explorer, or use 7zip to extract the content and retrieve the required file.

The file you need from the package is WebView2Loader.dll. If you are building a Win32 app you should take build\x86\WebView2Loader.dll, and if you are building a Win64 app you should take build\x64\WebView2Loader.dll.

Project Configuration for WebView2 loader DLLs
Wherever you choose to place the WebView2 loader DLLs you will need to set up a post-build event to copy it into your project’s output directory.
For a Win32 target the post-build event should look something like:

 copy /Y "common_DLL_folder_path\x86\WebView2Loader.dll" $(OUTPUTDIR)

For a Win64 target use:
 copy /Y "common_DLL_folder_path\x64\WebView2Loader.dll" $(OUTPUTDIR)