我在转发器中有许多ImageButton,根据每个记录,这些图像中的一些可以点击,而其他图像,我已经禁用了按钮来停止回发。
我现在已经改变了每个图像的不透明度,因此除非你将鼠标悬停在该图像按钮上,否则它将为0.6。麻烦的是,对于那些我已经禁用的人,显然我不能改变悬停的开启/关闭不透明度。
目前我这样做:
if (vessel.IsRegistered)
{
imagebuttonRegistration.ImageUrl = ("../Images/Icons/registrationApproved.gif");
imagebuttonRegistration.CommandArgument = null;
DisableImageButton(imagebuttonRegistration);
imagebuttonRegistration.ToolTip = GetLocalResourceObject("imageButRegistrationRegisteredText").ToString();
}
public static void DisableImageButton(ImageButton imagebutton)
{
imagebutton.Attributes.Remove("href");
imagebutton.Attributes.Add("disabled","disabled");
}
但是由于禁用按钮现在会给我带来问题,我怎么能停止按钮可点击/不回发但允许使用其他属性。
答案 0 :(得分:1)
试试这个:
imagebutton.Attributes.Add("onclick","return false");
imagebutton.Style.Add("cursor","context-menu");
答案 1 :(得分:1)
使用Css的不同方式:
在你的css文件中添加:
.notclickable{
cursor:text;
}
在DisableImageButton方法中添加:
imagebutton.Attributes["class"] ="notclickable";
答案 2 :(得分:1)