VC#のWPFアプリを使用して、マウス左クリック情報を取得したいのですが
方法を教えてださい。
画面上にボタン等は作らず、マウスの入力があったことだけ知りたいのです。
この方法がわかりません。
すみませんがご指導よろしくお願いします。
気になる質問をクリップする
クリップした質問は、後からいつでもMYページで確認できます。
またクリップした質問に回答があった際、通知やメールを受け取ることができます。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
回答2件
0
How detect a mouse click in webview2 (c#/vb.net)そのままなんですが、動かなかったので、イベントを変更しています。
XAML
1<Window x:Class="TeraWebView2ClickEvent.MainWindow" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 5 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 6 xmlns:wv2="clr-namespace:Microsoft.Web.WebView2.Wpf;assembly=Microsoft.Web.WebView2.Wpf" 7 xmlns:local="clr-namespace:TeraWebView2ClickEvent" 8 mc:Ignorable="d" 9 Title="MainWindow" Height="450" Width="800"> 10 <Grid> 11 <wv2:WebView2 x:Name="webView2" Source="https://www.google.com" WebMessageReceived="webView2_WebMessageReceived" NavigationCompleted="webView2_NavigationCompleted" /> 12 </Grid> 13</Window>
C#
1using Newtonsoft.Json; 2using System; 3using System.Collections.Generic; 4using System.Linq; 5using System.Text; 6using System.Threading.Tasks; 7using System.Windows; 8using System.Windows.Controls; 9using System.Windows.Data; 10using System.Windows.Documents; 11using System.Windows.Input; 12using System.Windows.Media; 13using System.Windows.Media.Imaging; 14using System.Windows.Navigation; 15using System.Windows.Shapes; 16 17namespace TeraWebView2ClickEvent { 18 /// <summary> 19 /// Interaction logic for MainWindow.xaml 20 /// </summary> 21 public partial class MainWindow : Window { 22 public MainWindow() { 23 InitializeComponent(); 24 } 25 public struct JsonObject { 26 public string Key; 27 public string Value; 28 public string Position; 29 } 30 31 private async void webView2_NavigationCompleted(object sender, Microsoft.Web.WebView2.Core.CoreWebView2NavigationCompletedEventArgs e) { 32 var js = "document.addEventListener('click', function (event){"; 33 js += "let elem = event.target;"; 34 js += "let jsonObject = {"; 35 js += "Key: 'click',"; 36 js += "Value: elem.name || elem.id || elem.tagName || \"Unkown\","; 37 js += "Position: event.pageX+\",\"+event.pageY"; 38 js += "};"; 39 js += "window.chrome.webview.postMessage(jsonObject);"; 40 js += "});"; 41 42 await webView2.ExecuteScriptAsync(js); 43 } 44 45 private void webView2_WebMessageReceived(object sender, Microsoft.Web.WebView2.Core.CoreWebView2WebMessageReceivedEventArgs e) { 46 try { 47 JsonObject jo = JsonConvert.DeserializeObject<JsonObject>(e.WebMessageAsJson); 48 if (jo.Key == "click") { 49 MessageBox.Show(jo.Value + "\r\n" + jo.Position); 50 } 51 } catch { 52 } 53 } 54 } 55} 56
投稿2021/06/25 11:13
総合スコア437
0
MouseDown イベントあたりはどうですか?
https://docs.microsoft.com/ja-jp/dotnet/api/system.windows.uielement.mousedown?view=net-5.0
投稿2021/06/16 09:44
総合スコア185
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
この方法を試しましたが無理でしたので報告します。
webviwe2を表示している状態ではマウス入力、キーボードに入力を取得できないようです。
2021/06/26 11:28
すいません。WebView2上でのクリックイベントだとは読み取れませんでした。
あなたの回答
tips
太字
斜体
打ち消し線
見出し
引用テキストの挿入
コードの挿入
リンクの挿入
リストの挿入
番号リストの挿入
表の挿入
水平線の挿入
プレビュー
質問の解決につながる回答をしましょう。 サンプルコードなど、より具体的な説明があると質問者の理解の助けになります。 また、読む側のことを考えた、分かりやすい文章を心がけましょう。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。