panel放了不能上下拖动.找可以的.

解决方案 »

  1.   

    用API函数 MoveWindow(panel.Handle...就OK..
      

  2.   

    Panel 怎么不行啊?? 加几行代码处理一下就行了
      

  3.   

    BOOL MoveWindow(
      HWND hWnd,      // handle to window
      int X,          // horizontal position
      int Y,          // vertical position
      int nWidth,     // width
      int nHeight,    // height
      BOOL bRepaint   // repaint flag
    );1. 相对移动 相对lbFont....
    MoveWindow(PanelMenu.Handle, lbFont.Left, lbFont.Top + lbFont.Height,
                PanelMenu.Width, PanelMenu.Height, True) 
    2. 绝对移动MoveWindow(PanelMenu.Handle, 100, 200,
                PanelMenu.Width, PanelMenu.Height, True) // PanelMenu 就是你装img的那个panel.
      

  4.   

    都没有滚动条可以拉.莫非要自己放一个滚动条然后调用movewindow?如果这样的话还不如 image1.top:= .... 就行了.关键是要有滚动条.
      

  5.   

    你是要拉什么??通过滚动条去移动这个img??请你详细叙述你的要求 就是你要做什么
      

  6.   

    ScrollBox1: TScrollBox;在additional页中.
      

  7.   

    设置image的属性Proportional为true