microspaze

Results 13 comments of microspaze

You can try this: https://github.com/praeclarum/sqlite-net/issues/326#issuecomment-2003009012

The same issue in RGPopup.Maui: https://github.com/microspaze/RGPopup.Maui/issues/6 The fix commits: https://github.com/microspaze/RGPopup.Maui/commit/a64a99db191b0432e41b9ce5cd8aba61d5e10038 https://github.com/microspaze/RGPopup.Maui/commit/62ac001409208ccd7035ff80123ac4cf993914f5

Auto hide scrollbar for all web pages: ``` webView2.CoreWebView2InitializationCompleted += (sender, args) => { if (args.IsSuccess && webView.CoreWebView2 != null) { webView.CoreWebView2.DOMContentLoaded += (s, a) => { //隐藏滚动条:https://blog.jussipalo.com/2021/02/webview2-how-to-hide-scrollbars.html webView.ExecuteScriptAsync("document.querySelector('body').style.overflow='scroll';var style=document.createElement('style');style.type='text/css';style.innerHTML='::-webkit-scrollbar{display:none}';document.getElementsByTagName('body')[0].appendChild(style)");...