如何创建一个undeline插入符

如何创建一个undeline插入符

本文介绍了插入符号:如何创建一个undeline插入符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道我们可以在控制台上创建一个插入符号(下划线插入符号)

i know that we can create a caret like on Console(underline caret)

来自文档的NULL给我们一个坚实的插入符号(我相信它是下划线插入符号)。但似乎被忽略了:(

from documentation the NULL give us a solid caret(i belive it's the underline caret). but seems to be ignored :(

if(CreateCaret(consoleedit,NULL,1,0)==0)
            DebugText("caret not created: " + GetLastError());
        ShowCaret(consoleedit);

我没有收到任何错误消息,但是插入符号继续相同。

i don't get any error message, but the caret continues been the same.

我做错了什么?

推荐答案

你说插入符没有改变。原始插入符是如何创建的?

You say the caret is unchanged.  How was the original caret created?


这篇关于插入符号:如何创建一个undeline插入符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 10:07