sakura-editor / sakura

SAKURA Editor (Japanese text editor for MS Windows)
https://sakura-editor.github.io/
Other
1.24k stars 162 forks source link

SHAutoComplete関数を使ったフォルダ位置の入力補完 #1968

Closed katahiromz closed 1 month ago

katahiromz commented 2 months ago

(必須) やりたいこと(=実現したいこと)

フォルダ位置指定において、入力補完を機能させる。

(省略可) 解決手段の提案

COMBOBOXINFO ComboInfo;
ComboInfo.cbSize = sizeof(ComboInfo);
GetComboBoxInfo(hwndCombo, &ComboInfo);
HWND hwndEdit = ComboInfo.hwndItem;
SHAutoComplete(hwndEdit, SHACF_FILESYS_DIRS);

(省略可) スクリーンショット

無題