Created
August 24, 2016 14:38
-
-
Save yoshikazuendo/4d8cc28a391a03b1b01f2e2e91260a74 to your computer and use it in GitHub Desktop.
【WPF】フォーカスの概要
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
参考サイトをまとめました。 | |
【フォーカスの概要】 | |
キーボードフォーカスと論理フォーカス | |
https://msdn.microsoft.com/ja-jp/library/aa969768(v=vs.110).aspx | |
論理フォーカスとキーボードフォーカス | |
http://iisoft.jp/tips/2011082301_focus.html | |
【Tips】 | |
WPF Reset Focus on Button Click | |
http://stackoverflow.com/questions/2052389/wpf-reset-focus-on-button-click | |
アクティブなコントロールを取得する | |
https://social.msdn.microsoft.com/Forums/ja-JP/82deed76-ddda-45bb-95e2-a9ddb2edd4e7?forum=wpfja | |
コントロールからフォーカスを外す方法 | |
Keyboard.ClearFocus(); | |
http://qiita.com/Nuits/items/89097e3e25a95bcd19f4 | |
Tab Orderを細かく設定するには | |
http://d.hatena.ne.jp/hilapon/20110228/1298877960 | |
Cursor Focus on TextBox | |
Keyboard.Focus(Hoge); | |
Hogeは、Focusable = trueになっている必要がある。 | |
http://stackoverflow.com/questions/828155/cursor-focus-on-textbox-in-wpf-c?rq=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment