MFC,static,文字滚动!!!!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFC,static,文字滚动!!!!相关的知识,希望对你有一定的参考价值。
从左到右滚动,要求有源代码,过程详细,本人初学,讲得深奥,看不懂的。最好能说明在哪里添加代码,回答优秀,加高分。
CCreditStatic m_static;初始化的地方
TCHAR *pIntro=
_T("CopyRight 2007\r||"
"一切后果皆由使用者本人负责!||||")
;
m_static.SetCredits(pIntro);//设置内容
m_static.StartScrolling();//开始滚动
CreditStatic.h CreditStatic.cpp 这两个滚动static mfc类.网上搜,很多 参考技术A #include <stdio.h>
#include <math.h>
#define DISTANCE 20
/**********************************/
void delay_ms(int m_second)
int i,cnt;
for(cnt=0; cnt<m_second; cnt++)
delay(1000);
return;
/**********************************/
void printf_empty(int empty_num)
int i;
for(i=0;i<empty_num;i++) printf(" ");
return;
/**********************************/
main()
int cnt,str_len,i;
char *str="Hello,world! ^_^ ";
str_len = strlen(str);
printf("%s",str);
i=0;
while(i<=DISTANCE)
delay_ms(100);
printf("\r");
printf_empty(str_len+i);
printf("\r");
printf_empty(i+1);
printf("%s",str);
i++;
getch();
参考技术B 楼上的,人家是要MFC啦
猎豹MFC--状态栏CStatusBar
在cpp文件中初始化函数内添加代码:
一个状态栏有多个面板:
摆放状态栏的位置:
添加文本框 设置 多行 滚动条属性:
接收回车键设置:
并设置修改ID。
给文本框添加控件变量:
给文本框添加change消息处理:
。
在文本框内输入文字后 ,在状态栏自动给文字计数:
CStatusBar常用成员函数:
m_status.SetIndicators()
m_status.SetPanelInfo()
m_status.SetPaneText()
以上是关于MFC,static,文字滚动!!!!的主要内容,如果未能解决你的问题,请参考以下文章