Generally, its about Telerik RadDesktopAlert and its control named Popup.
So when i set size to new value:
_textBox.Clear();
_textBox.Text = txtMessage;
_textBox.Visible =
_btnCollapse.Enabled =
_btnNotify.Enabled =
_panelWithButtons.Visible = true;
AlertControl.FixedSize = new Size(ALERT_WIDTH, _height);
AlertControl.Popup.Size = AlertControl.FixedSize;
I tried to run then
AlertControl.Popup.Invalidate();
But it still flickers. I tried to set DoubleBuffered via reflection, but this doesnt help.
In other words, how to remove flickering when i set size for the control ?
PS As you understand, i cannot inherit from that popup.