Foxtable(狐表)用户栏目专家坐堂 → 在单元格中直接绘图?


  共有1617人关注过本帖树形打印复制链接

主题:在单元格中直接绘图?

帅哥哟,离线,有人找我吗?
有点甜
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/10/11 14:50:00 [显示全部帖子]

If e.Col.Name = "日期" AndAlso e.Row.IsNull("日期") = False Then
    e.StartDraw()
    Dim sp As TimeSpan = cdate(e.Row("日期")) - Date.today
    If sp.TotalDays >= 15 Then
        e.Graphics.FillRectangle(Brushes.Green,e.x + 1,e.y + 1, e.width, e.Height - 2)
    ElseIf sp.TotalDays > 0 Then
        Dim Width As Integer = (e.Width - 2 ) * sp.TotalDays / 15
        e.Graphics.FillRectangle(Brushes.Red,e.x + 1,e.y + 1, Width, e.Height - 2)
    End If
    e.EndDraw()
End If

 回到顶部