Foxtable(狐表)用户栏目专家坐堂 → 单元格绘图


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

主题:单元格绘图

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


加好友 发短信
等级:四尾狐 帖子:808 积分:6213 威望:0 精华:0 注册:2014/3/23 23:02:00
单元格绘图  发帖心情 Post By:2015/12/15 16:18:00 [显示全部帖子]

示例文件中,进度列属性为字符,不太理解,其次,能否绘制出来显示百分比数字,如40%,而不是40,谢谢


If e.Col.Name = "进度" AndAlso e.Row.IsNull("进度") = False Then
    e.StartDraw()

    Dim
 Width As Integer = (e.Width - 2 )* e.Row("进度") \ 100
    
If e.Row("进度") = 100 Then
        e.Graphics.FillRectangle(Brushes.Green,e.x + 
1,e.y + 1, Width, e.Height - 2)
    Else

        e.Graphics.FillRectangle(Brushes.Red,e.x + 
1,e.y + 1, Width, e.Height - 2)
    End
 If
    e.EndDraw()

End
 
If



 回到顶部