I'm implementing a custom control that provides public events to be handled from an outer class, i.e. the main form.
The main form can handle those events (in my case it is an advanced TabControl).
An excerpt of my custom control:
public class FlatTabControlEx : TabControl {
public delegate void OnTabCloseQueryDelegate(int tabIndex, TabPage tabPage);
public event OnTabCloseQueryDelegate TabCloseQuery;
protected override void OnPaint(PaintEventArgs e) {
DrawControl(e.Graphics);
base.OnPaint(e);
}
protected override void OnClick(EventArgs e) {
var imageRect = GetImageRectangle()
bool mouseOver = imageRect.Contains(GetMousePos());
if (mouseOver) {
if (TabCloseQuery != null) {
TabCloseQuery(i, TabPages[i]);
}
}
}
}
And here is how I handle that event:
public partial class TestForm : Form {
public TestForm() {
InitializeComponent();
_flatTabControlEx.TabCloseQuery += (index, tabPage) => {
if (MessageBox.Show("Close tab with title " + tabPage.Text, "Question", MessageBoxButtons.YesNo) == DialogResult.Yes) {
_flatTabControlEx.TabPages.Remove(tabPage);
}
};
}
}
Somehow, the messagebox gets hidden (by its main form?) and only shows up when the main form loses and regains focus. Providing a different owner didn't seem to help.
How can I handle this case and how is the behaviour caused?
Edit 1: Added some minimalized code above.
Edit 2: I noticed that it's actually my control that is drawn over the MessageBox. How can I determine when to draw it?