以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  DrawCell中如何画直线  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=169828)

--  作者:zhysh
--  发布时间:2021/7/2 11:53:00
--  DrawCell中如何画直线
老师好,DrawCell中如何画直线?
     
e.StartDraw()
e.Graphics.DrawLine(Brushes.Red,e.x,e.y,e.x+e.Width,e.y)
e.Graphics.DrawLine(Brushes.Red,e.x,e.y+e.Height,e.x+e.Width,e.y+e.Height)\'
e.EndDraw()


图片点击可在新窗口打开查看此主题相关图片如下:50.jpg
图片点击可在新窗口打开查看


--  作者:有点蓝
--  发布时间:2021/7/2 11:55:00
--  
e.Graphics.DrawLine(Pens.Red,e.x,e.y,e.x+e.Width,e.y)


--  作者:zhysh
--  发布时间:2021/7/2 11:55:00
--  
谢谢!