スマートインデントをC++のwxStyledTextCtrlで処理する方法を知っている人はいますか?wxStyledTextCtrl(Scintilla)のインデントとスマートインデント
私は明白な成功せず、次のように様々なバリエーションをしようとしている:
_textEd->SetProperty(wxT("indentation.smartindenttype"), wxT("indentation:simple"));
_textEd->SetProperty(wxT("indentation.indentwidth"), wxT("4"));
_textEd->SetProperty(wxT("indentation.tabwidth"), wxT("4"));
_textEd->SetProperty("spell.mistake.indicator", "style:squigglelow");
注:Indentation and smart indent in ScintillaNETは、.NETのため、この問題をカバーしています。
stcサンプルはあなたのために機能しますか? wxのバージョンとOS /ツールキットは何ですか? – Igor