mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 03:33:18 +01:00
Fix for new msgbox
This commit is contained in:
parent
93b61b2972
commit
ec9fb47f66
@ -45,13 +45,9 @@ namespace Nikse.SubtitleEdit.Forms.SeMsgBox
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
UiUtil.FixFonts(this);
|
UiUtil.FixFonts(this);
|
||||||
|
|
||||||
InitializeIcon(icon);
|
labelText.Font = new Font(Font.FontFamily, Font.Size + 2);
|
||||||
InitializeText(text);
|
|
||||||
InitializeButtons(buttons);
|
|
||||||
|
|
||||||
Text = caption;
|
Text = caption;
|
||||||
_text = text;
|
_text = text;
|
||||||
labelText.Font = new Font(Font.FontFamily, Font.Size + 2);
|
|
||||||
copyTextToolStripMenuItem.Text = LanguageSettings.Current.Main.Menu.ContextMenu.CopyToClipboard;
|
copyTextToolStripMenuItem.Text = LanguageSettings.Current.Main.Menu.ContextMenu.CopyToClipboard;
|
||||||
buttonOK.Text = LanguageSettings.Current.General.Ok;
|
buttonOK.Text = LanguageSettings.Current.General.Ok;
|
||||||
buttonCancel.Text = LanguageSettings.Current.General.Cancel;
|
buttonCancel.Text = LanguageSettings.Current.General.Cancel;
|
||||||
@ -59,6 +55,10 @@ namespace Nikse.SubtitleEdit.Forms.SeMsgBox
|
|||||||
buttonNo.Text = LanguageSettings.Current.General.No;
|
buttonNo.Text = LanguageSettings.Current.General.No;
|
||||||
buttonAbort.Text = LanguageSettings.Current.DvdSubRip.Abort;
|
buttonAbort.Text = LanguageSettings.Current.DvdSubRip.Abort;
|
||||||
|
|
||||||
|
InitializeIcon(icon);
|
||||||
|
InitializeText(text);
|
||||||
|
InitializeButtons(buttons);
|
||||||
|
|
||||||
UiUtil.FixLargeFonts(this, buttonOK);
|
UiUtil.FixLargeFonts(this, buttonOK);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -137,9 +137,10 @@ namespace Nikse.SubtitleEdit.Forms.SeMsgBox
|
|||||||
labelText.ContextMenuStrip = contextMenuStrip1;
|
labelText.ContextMenuStrip = contextMenuStrip1;
|
||||||
using (var g = CreateGraphics())
|
using (var g = CreateGraphics())
|
||||||
{
|
{
|
||||||
var textSize = g.MeasureString(text, Font);
|
var textSize = g.MeasureString(text, labelText.Font);
|
||||||
Height = (int)textSize.Height + 90 + (Height - buttonOK.Top);
|
Height = (int)textSize.Height + 90 + (Height - buttonOK.Top);
|
||||||
Width = (int)textSize.Width + 220;
|
var formWidth = (int)textSize.Width + 120;
|
||||||
|
Width = Math.Max(formWidth, 320);
|
||||||
}
|
}
|
||||||
|
|
||||||
labelText.Text = text;
|
labelText.Text = text;
|
||||||
@ -179,7 +180,7 @@ namespace Nikse.SubtitleEdit.Forms.SeMsgBox
|
|||||||
buttonControl.Width = buttonWidth;
|
buttonControl.Width = buttonWidth;
|
||||||
buttonControl.Visible = true;
|
buttonControl.Visible = true;
|
||||||
buttonControl.Left = start;
|
buttonControl.Left = start;
|
||||||
buttonControl.TabIndex = start;
|
buttonControl.TabIndex = Math.Max(0, start);
|
||||||
start += buttonWidth + 10;
|
start += buttonWidth + 10;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user