コード例 #1
0
ファイル: Hook.cs プロジェクト: PeoB/C-Bonanza
 public void OnMouseButtonDown(MouseEventArgs e)
 {
     var handler = MouseButtonDown;
     if (handler != null) handler(this, e);
 }
コード例 #2
0
ファイル: MainWindowVM.cs プロジェクト: PeoB/C-Bonanza
 private void SetTitle(object sender, MouseEventArgs mouseEventArgs)
 {
     var title = Control.FindByLocation(mouseEventArgs.Point).Title;
     Application.Current.Dispatcher.BeginInvoke(new Action(() => Title = string.IsNullOrEmpty(title) ? "No title found" : title));
 }