当前位置: 主页 > 日志 > VB >

vb窗口中平铺背景图片的方法

'窗口重绘过程
Private Sub Form_Paint()  
    Dim X As Integer, Y As Integer
    Dim ImgWidth     As Integer
    Dim ImgHeight     As Integer
    Dim FrmWidth     As Integer
    Dim FrmHeight     As Integer
    '初始化
    ImgWidth = Image1.Width
    ImgHeight = Image1.Height
    FrmWidth = Me.Width
    FrmHeight = Me.Height
    '开始平铺
    For X = 0 To FrmWidth Step ImgWidth
        For Y = 0 To FrmHeight Step ImgHeight
            PaintPicture Image1, X, Y
        Next Y
    Next X

End Sub

[日志信息]

该日志于 2009-02-25 16:27 由 redice 发表在 redice's Blog ,你除了可以发表评论外,还可以转载 “vb窗口中平铺背景图片的方法” 日志到你的网站或博客,但是请保留源地址及作者信息,谢谢!!    (尊重他人劳动,你我共同努力)
   
验证(必填):   点击我更换验证码

redice's Blog  is powered by DedeCms |  Theme by Monkeii.Lee |  网站地图 |  本服务器由西安鲲之鹏网络信息技术有限公司友情提供

返回顶部