请教大家一下,希望大家能帮帮我。
 是这样的,我要在VB 里做一个 手指选择的功能,比如画一个左右手 10个手指 的图形,当鼠标选中其中手指,这个手指图形变色。这样的功能,不知道该怎么做?请教大家一下,希望大家指点指点!在这里先谢谢大家啦!

解决方案 »

  1.   

    将你的各个手指分别定义一个边框多边形(接近手指形状),鼠标点击(或移动)时候,检测鼠标是否在对应的手指多边形里面(可以使用API函数PtInRegion判断),如果是,则,改变手指的颜色(替换图片,形状最好相同)
      

  2.   

    FloodFill
    The FloodFill function fills an area of the display surface with the current brush. The area is assumed to be bounded as specified by the crFill parameter. Note  The FloodFill function is included only for compatibility with 16-bit versions of Windows. For Win32-based applications, use the ExtFloodFill function with FLOODFILLBORDER specified. BOOL FloodFill(
      HDC hdc,          // handle to device context
      int nXStart,      // x-coordinate, where fill begins
      int nYStart,      // y-coordinate, where fill begins
      COLORREF crFill   // fill color
    );
     
    Parameters
    hdc 
    Handle to a device context. 
    nXStart 
    Specifies the logical x-coordinate of the point where filling is to begin. 
    nYStart 
    Specifies the logical y-coordinate of the point where filling is to begin. 
    crFill 
    Specifies the color of the boundary or of the area to be filled. 
    Return Values
    If the function succeeds, the return value is nonzero.If the function fails, the return value is zero. Windows NT: To get extended error information, callGetLastError. Res
    Following are reasons this function might fail: The fill could not be completed. 
    The given point has the boundary color specified by the crFill parameter. 
    The given point lies outside the current clipping region — that is, it is not visible on the device. 
    See Also
    Bitmaps Overview, Bitmap Functions, ExtFloodFill