I have developed a control for ToolTip and registered it as ToolTip with below codes,
protected override CreateParams CreateParams
{
get
{
CreateParams param = base.CreateParams;
param.ClassName = "tooltips_class32";
param.Style = unchecked(WindowMessages.WS_POPUP) | WindowMessages.TTS_ALWAYSTIP;
param.ExStyle |= WindowMessages.WS_EX_TOPMOST;
return param;
}
}
By default, the tooltip popup is enabled with Shadow.
How can i disable the default shadow of the ToolTip?
Regards,
Try to remove
CS_DROPSHADOW
flag fromClassStyle
: