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.
我有一个 ScintillaNet 文本编辑控件。当用户在控件中输入时,我想用 4 x 空格替换选项卡。我不确定在哪里执行此操作,因为我对控件不是很熟悉。我一直在调查所有事件,但似乎没有什么合适的。有人可以建议吗?
您可以从 GUI 或以编程方式使用控件属性 ScintillaNET.Indentation 执行此操作。
设置 IndentWidth=4(四个空格)、TabIndents=true 和 UseTabs=false。 每次按下 Tab 键时,这将缩进 4 个空格。