• 用vc++做滚动条控件


      首先用应用向导产生一名为scro的基于对话框的应用,再利用对话框编辑器加入两个一样的水平滚动条,两个滚动条的id分别取idc—scr1idc—scr2,结果如下图,将其作为本文的示例。

      对话框编辑器虽然允许将滚动条控件加进对话框中,而且,类向导允许加入数据成员,但要使这两个水平滚动条工作,还必须加进一些代码。就本例程序,当用户拖动滚动块或用鼠标滚动箭头时,滚动条就会向对话框发送WM_HSCROLL消息,对话框消息控制函数必须对这一消息进行处理,然后将滚动块定位到相应的位置上。
      一般情况下,对话框中的每一控件都有自己独立的消息控制函数,但滚动条控件则有点不同,因为对话框中所有的水平滚动条都只有一个WM_HSCROLL消息控制函数,而所有的垂直滚动条都只有一个WM_HSCROLL消息控制函数。如果对话框中只有一个水平(或垂直)滚动条,则不会出现什么问题,问题是本例程序有一特殊之处,笔者有意设置了两个水平滚动条,可按前述都用一个WM_HSCROLL消息控制函数,所以程序必须能识别出哪个滚动条在发送消息。下面是具体步骤。

    1.定义滚动范围的最大值和最小值。
      在scrodlg.h类声明中的最上面加入下面两行。

      enum {nmin=0};
      enum {nmax=100};

    2.修改oninitdialog函数,初始化滚动范围,决定那一个滚动条发送消息。

    // todo: add extra initialization here
      cscrollbar* psb = (cscrollbar*) getdlgitem(idc—scr1);
      psb-〉setscrollrange(nmin, nmax);
      psb = (cscrollbar*) getdlgitem(idc_scr2);
      psb-〉setscrollrange(nmin, nmax);

    3.利用classwizardcscrodlg中加入滚动条消息控制函数,即选择wm—hscroll消息,然后加进onhscroll成员函数,并在其中加入如下代码:

      void cscrodlg::onhscroll(uint nsbcode, uint npos, cscrollbar* pscrollbar) 
      {// todo: add your message handler code here and/or call default
        int ntemp1, ntemp2;
        ntemp1 = pscrollbar-〉getscrollpos();
        switch(nsbcode) 
        { 
          case sb—thumbposition:          pscrollbar-〉setscrollpos(npos);          break;       case sb—lineleft: // 左按钮          ntemp2 = (nmax - nmin) / 10; //划为10等份          if ((ntemp1 - ntemp2) 〉 nmin)
             {
                ntemp1 -= ntemp2;
             }          
    else
             {
                ntemp1 = nmin;
             }          pscrollbar-〉setscrollpos(ntemp1);          
    break;       case sb—lineright: // 右箭头按钮          ntemp2 = (nmax - nmin) / 10;          if ((ntemp1 + ntemp2) 〈 nmax)
             {
                 ntemp1 += ntemp2;
             }          
    else
             {
                 ntemp1 = nmax;
             }          pscrollbar-〉setscrollpos(ntemp1);          
    break;
        }     cdialog::onhscroll(nsbcode, npos, pscrollbar);}

    4.现在可以编译、测试程序了。

  • 相关阅读:
    Rational全系列工具介绍
    转贴 MM(ModelMaker)建模工具快速上手指南delphi
    eclipse打不开报(Failed to create the Java Virtual Machine)解决方法
    Vagrant系列(二)Vagrant的配置文件Vagrantfile详解
    Xshell登录Vagrant方式
    win10系统在执行“ vagrant box add centos7 vagrantcentos7.box”添加box时,报错“Vagrant failed to initialize at a...
    win10系统搭建vagrant时开启bios,虚拟化问题
    查看memcache版本
    python空为None
    python 获得字符串长度
  • 原文地址:https://www.cnblogs.com/xing901022/p/2747103.html
Copyright © 2020-2023  润新知