Hi,
Currently we did not provide the remove event for that yet.
You can check the items to find the removed item :
foreach(AttachmentItem item in control1.Items)
{
if( !item.Checked && !item.Visible )
{
//this item is clicked remove .
}
}
We will provide better solution on this in the future.
Regards , Terry .