我想删除"应用" " RGB滑块"中的按钮; RadColorPicker的选项卡,以便设置颜色的功能更接近于" Web调色板"选项卡,不需要"应用"按钮单击以设置颜色。
我希望在后面的代码中完成。
我的RadColorPicker目前的形式:
RadColorPicker colourPicker = new RadColorPicker();
colourPicker.ShowIcon = false;
colourPicker.AutoPostBack = true;
colourPicker.ShowEmptyColor = false;
colourPicker.PaletteModes = PaletteModes.RGBSliders;
答案 0 :(得分:2)
您可以通过CSS实现此目的。
'Code behind
colourPicker.CssClass="noApplyButtonColorPicker" 'ADDING A CSS CLASS HERE WILL ENSURE THAT IT APPLIES ONLY TO COLOUR PICKERS WHICH YOU CHOOSE TO.
/*CSS*/
.noApplyButtonColorPicker .rcpApplyButton
{
display:none !important;
}
这会隐藏您的申请按钮。
Sikandar