vc++中 CreateCaret 函数怎么用
http://zhidao.baidu.com/question/317533773.html答的好加分...
http://zhidao.baidu.com/question/317533773.html
答的好加分 展开
答的好加分 展开
展开全部
BOOL CreateCaret( HWND hWnd,
HBITMAP hBitmap,
int nWidth,
int nHeight
);
这个函数是用了创建输入提示符号的。
第一个参数表示创建的窗口
第二个参数表示符号的样子,可以设置为一个图片
后面两个在有图片时候,无效。
没有图片时候,就设置高度和宽度
HBITMAP hBitmap,
int nWidth,
int nHeight
);
这个函数是用了创建输入提示符号的。
第一个参数表示创建的窗口
第二个参数表示符号的样子,可以设置为一个图片
后面两个在有图片时候,无效。
没有图片时候,就设置高度和宽度
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一、CWnd::CreateCaret
Creates a new shape for the system caret and claims ownership of the caret.
void CreateCaret(
CBitmap* pBitmap
);
Example
// Changes the caret of the edit control in this dialog box
void CMyDlg::OnChangeCaret()
{
CBitmap* pBitmap = new CBitmap;
pBitmap->LoadBitmap(IDB_HAPPY_BITMAP);
m_editCtrl.CreateCaret(pBitmap);
m_editCtrl.ShowCaret();
}
二、CWindow::CreateCaret
Creates a new shape for the system caret.
BOOL CreateCaret(
HBITMAP pBitmap
) throw();
希望能帮到你。
Creates a new shape for the system caret and claims ownership of the caret.
void CreateCaret(
CBitmap* pBitmap
);
Example
// Changes the caret of the edit control in this dialog box
void CMyDlg::OnChangeCaret()
{
CBitmap* pBitmap = new CBitmap;
pBitmap->LoadBitmap(IDB_HAPPY_BITMAP);
m_editCtrl.CreateCaret(pBitmap);
m_editCtrl.ShowCaret();
}
二、CWindow::CreateCaret
Creates a new shape for the system caret.
BOOL CreateCaret(
HBITMAP pBitmap
) throw();
希望能帮到你。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询