这样的样子怎么样实现啊·
谁能告诉我 下··这样的样式 是怎么样实现的··能提供一下代码吗·
------解决方案--------------------应该是第三方控件吧
------解决方案--------------------没用过这样的,小钩应该是透明的图片吧?其他的用样式表,或是自己调样式吧,这样的第三方控件还没用过
------解决方案--------------------只用过C1的grid控件,功能还是挺强的
------解决方案--------------------自定义列表控件了!
------解决方案--------------------是不是用EXT做的啊
有点像EXT框架
------解决方案--------------------自己拼....样式自己设定....这有什么难度吗?
------解决方案--------------------自定义模板,if you use gridview then you will bind different image by different condition in RowDataBound event?
eg: if task 1> 50% then bind blue imageID
else
bind yollow imageiD
------解决方案--------------------没用过帮顶
------解决方案--------------------自己画
StringBuilder sb = new StringBuilder();
sb.Append("<table class='box'>");
sb.Append("<tr class='head'><th>Name</th><th>Task 1</th><th>Task 2</th><th>Task 3</th><th>Completed</th></tr>");
sb.Append("<tr class='top'><td>....");
int i = 0;
foreach()
sb.AppendFormat("<tr class='row_{0}'><td>...", (i++)%2);
sb.Append("</table>");
------解决方案--------------------
gridview就可以实现