public MsgBoxCode(Window parent, CommMedium helpType)
 {
     this.parent = parent;
     this.medium = helpType;
     InitializeComponent();
     this.Title = DI.Wrapper.GetText(helpType);
     WrapErr.ToErrReport(9999, () => this.Icon = helpType.ResourceWhiteBitmap());
     //this.codeBox.CurrentHighlighter = HighlighterManager.Instance.Highlighters["CPPDL"];
     this.buttonWidthManager = new ButtonGroupSizeSyncManager(this.btnCopy, this.btnExit);
     this.buttonWidthManager.PrepForChange();
 }