logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

mfc编辑框输入垂直居中&字体调整&不采用password属性进行密码输入&vs2013中加载bitmap位图

第一部分:mfc编辑框输入垂直居中处理前:编辑框光标靠上,不太美观处理后:光标垂直居中操作:1)将编辑框属性中的Align Text 选择为Center2)将编辑框属性中的Multiline设置为true3)在OnInitDialog()函数中添加如下代码//设置编辑框字体垂直居中CRect rc = CRect(0, 0, 0, 0);m_name.GetClientRect(&rc

#mfc
基于c++的图像的灰度修正

图像的灰度修正:目的:是图像在

#c++
c++编程学习

LeetCode OJ:Evaluate Reverse Polish NotationValid operators are +, -, *, /. Each operand may be an integer or another expression.Some examples:["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9

#c++#leetcode
到底了