spread的HyperLinkCellType控件,使用的时候,显示效果不对
希望能给看看是哪个东西没设置好,谢谢了 我希望显示的效果是,光标没放在上面的时候,显示"001",且"001"的颜色是蓝色,光标点击的时候,颜色不变化,会跳转到指定链接的地方。 回复 2楼jd6061的帖子
设置方法如下:
前台 CSS 代码:
<style>
.CssStyle1 a:link {color:white}
.CssStyle1 a:hover {color:blue}
.CssStyle1 a:visited {color:blue;}
</style>
后台代码:
protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack)
{
return;
}
FarPoint.Web.Spread.HyperLinkCellType hlcell = new FarPoint.Web.Spread.HyperLinkCellType();
hlcell.NavigateUrl = "http://www.fpoint.com";
hlcell.Target = "self";
hlcell.CssClass = "CssStyle1";
FpSpread1.ActiveSheetView.Cells.CellType = hlcell;
FpSpread1.ActiveSheetView.Columns.Width = 150;
} 问题解决了, 太牛叉了,,佩服啊。 回复 4楼jd6061的帖子
不客气,感谢反馈问题结果。
只是使用熟练了而已:itwn:
页:
[1]