Well, I got the idea from Wael Ltifi to resize my window when opening my component.
I know it's not a clean solution at all, but given the urgency and the fact that I'm not a C# expert, it's the only workaround I could find.
I added this code right after opening my editor.
var window = this;
bool isMaximized = window.WindowState == FormWindowState.Maximized;
if (isMaximized)
{
window.WindowState = FormWindowState.Normal;
window.Width -= 10;
window.Width += 10;
window.WindowState = FormWindowState.Maximized;
} else
{
window.Width -= 10;
window.Width += 10;
}