0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WPFアプリでタッチの波紋を非表示にする

Posted at

環境

Windows10 1809

Windowsの設定で波紋を非表示にする

[設定]-[簡単操作]- 左サイドメニュー[カーソルとポインターのサイズ]
「タッチのフィードバックを変更する」を「オフ」にする

この方法だと独自で作ったアプリでは破門が消えない。

アプリから波紋を非表示にする

Stylus.SetIsTouchFeedbackEnabled(this, false);
Stylus.SetIsTapFeedbackEnabled(this, false);
Stylus.SetIsPressAndHoldEnabled(this, false);

これで消えるんだけども、全画面一気にできる方法ないかなー

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?