Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
System.Windows.Forms.PropertyGrid の編集をプログラムで開始する良い方法を探しています。必要な GridItem を選択できますが、カーソルが編集フィールドに移動しません。
TABキーを送ってみましたか?
private void propertyGrid_SelectedGridItemChanged(object sender, SelectedGridItemChangedEventArgs e) { SendKeys.Send("{TAB}"); }