private void applyResolutionBtn_Click(object sender, EventArgs e)
        {
            var princoneHwnd = Win32Wrapper.GetWindowHandle(PRICONNE_WND_CLASS, PRICONNE_WND_NAME);

            if ((int)princoneHwnd == 0)
            {
                MessageBox.Show(MSG_MESSAGE_START_GAME_FIST, MSG_TITLE_START_GAME_FIRST, MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            if (!(resolutionComboBox.SelectedValue is Size newResolution))
            {
                return;
            }
            Win32Wrapper.ResizeWindow(princoneHwnd, newResolution.Width, newResolution.Height);
        }