public override void InitDialogSettings() { srcCS = "//Dialog Background settings" + CRLF; srcVB = "'Dialog Background settings" + CRLF; DlgMgr.UdfBackcolorsEnabled = checkUdfBackcolorsEnabled.Checked; srcCS += "DlgMgr.UdfBackcolorsEnabled = " + DlgMgr.UdfBackcolorsEnabled.ToString().ToLower() + ";" + CRLF; srcVB += "DlgMgr.UdfBackcolorsEnabled = " + DlgMgr.UdfBackcolorsEnabled.ToString() + CRLF; if (!DlgMgr.UdfBackcolorsEnabled) { return; } //main if (colorSelect1.UseSystemDefault) { DlgMgr.ResetBackColor(XMessageBoxBackground.DlgWindow); srcCS += "DlgMgr.ResetBackColor(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + ");" + CRLF; srcVB += "DlgMgr.ResetBackColor(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + ")" + CRLF; } else if (colorSelect1.BackgroundMode == 0) //solid color or hatch { if (SelectedBrushMain == XMessageBoxHatchStyle.HatchStyleNone) { DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground.DlgWindow, BackgroundColorMain); srcCS += "DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + "," + CSNxt + ColorToStr(BackgroundColorMain) + ");" + CRLF; srcVB += "DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + "," + VBNxt + ColorToStr(BackgroundColorMain) + ")" + CRLF; } else { DlgMgr.LoadBackcolorFromHatchBrush(XMessageBoxBackground.DlgWindow, SelectedBrushMain, BackgroundColorMain); srcCS += "DlgMgr.LoadBackcolorFromHatchBrush(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + "," + CSNxt + "XMessageBoxHatchStyle." + SelectedBrushMain.ToString() + "," + CSNxt + ColorToStr(BackgroundColorMain) + ");" + CRLF; srcVB += "DlgMgr.LoadBackcolorFromHatchBrush(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + "," + VBNxt + "XMessageBoxHatchStyle." + SelectedBrushMain.ToString() + "," + VBNxt + ColorToStr(BackgroundColorMain) + ")" + CRLF; } } else //bitmap file { DlgMgr.LoadBackcolorFromBitmapFile(XMessageBoxBackground.DlgWindow, SelectedBitmapFileMain); srcCS += "DlgMgr.LoadBackcolorFromBitmapFile(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + "," + CSNxt + "\"" + FilenameToStr(SelectedBitmapFileMain) + "\");" + CRLF; srcVB += "DlgMgr.LoadBackcolorFromBitmapFile(XMessageBoxBackground." + XMessageBoxBackground.DlgWindow.ToString() + "," + VBNxt + "\"" + SelectedBitmapFileMain + "\")" + CRLF; } //toolbar if (colorSelect2.UseSystemDefault) { DlgMgr.ResetBackColor(XMessageBoxBackground.ToolBarWindow); srcCS += "DlgMgr.ResetBackColor(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + ");" + CRLF; srcVB += "DlgMgr.ResetBackColor(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + ")" + CRLF; } else if (colorSelect2.BackgroundMode == 0) //solid color or hatch { if (SelectedBrushToolbar == XMessageBoxHatchStyle.HatchStyleNone) { DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground.ToolBarWindow, BackgroundColorToolbar); srcCS += "DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + "," + CSNxt + ColorToStr(BackgroundColorToolbar) + ");" + CRLF; srcVB += "DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + "," + VBNxt + ColorToStr(BackgroundColorToolbar) + ")" + CRLF; } else { DlgMgr.LoadBackcolorFromHatchBrush(XMessageBoxBackground.ToolBarWindow, SelectedBrushToolbar, BackgroundColorToolbar); srcCS += "DlgMgr.LoadBackcolorFromHatchBrush(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + "," + CSNxt + "XMessageBoxHatchStyle." + SelectedBrushToolbar.ToString() + "," + CSNxt + ColorToStr(BackgroundColorToolbar) + ");" + CRLF; srcVB += "DlgMgr.LoadBackcolorFromHatchBrush(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + "," + VBNxt + "XMessageBoxHatchStyle." + SelectedBrushToolbar.ToString() + "," + VBNxt + ColorToStr(BackgroundColorToolbar) + ")" + CRLF; } } else //bitmap file { DlgMgr.LoadBackcolorFromBitmapFile(XMessageBoxBackground.ToolBarWindow, SelectedBitmapFileToolbar); srcCS += "DlgMgr.LoadBackcolorFromBitmapFile(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + "," + CSNxt + "\"" + FilenameToStr(SelectedBitmapFileToolbar) + "\");" + CRLF; srcVB += "DlgMgr.LoadBackcolorFromBitmapFile(XMessageBoxBackground." + XMessageBoxBackground.ToolBarWindow.ToString() + "," + VBNxt + "\"" + SelectedBitmapFileToolbar + "\")" + CRLF; } }
public static void ExtendeMessagesShow() { //Dialog Button settings DlgMgr.ResetDlgButtons(); DlgMgr.AssignButtonCaption(XMessageBoxButton.ButtonNo, "Non"); DlgMgr.AssignButtonEnabled(XMessageBoxButton.ButtonNo, True); DlgMgr.AssignButtonToolTip(XMessageBoxButton.ButtonNo, ""); DlgMgr.AssignButtonFont(XMessageBoxButton.ButtonNo, "Microsoft Sans Serif", 8, 0, 0, 0, 0, 0); DlgMgr.AssignButtonCaption(XMessageBoxButton.ButtonYes, "Oui"); DlgMgr.AssignButtonEnabled(XMessageBoxButton.ButtonYes, True); DlgMgr.AssignButtonToolTip(XMessageBoxButton.ButtonYes, ""); DlgMgr.AssignButtonFont(XMessageBoxButton.ButtonYes, "Microsoft Sans Serif", 8, 0, 0, 0, 0, 0); //Dialog Dimension settings DlgMgr.AssignDlgMaxSize(600, 0); //Dialog Position settings //absolute DlgMgr.AssignDlgPosition(100, 200, XMessageBoxPositionMode.AbsolutePosition); //Dialog Background settings DlgMgr.UdfBackcolorsEnabled = true; DlgMgr.ResetBackColor(XMessageBoxBackground.DlgWindow); DlgMgr.LoadBackColorFromSolidColor(XMessageBoxBackground.ToolBarWindow, Color.FromArgb(-9404272)); //Dialog Icon settings DlgMgr.UdfIconsEnabled = true; DlgMgr.LoadIconFromFileType(XMessageBoxIcon.UserIcon, "*.cs"); DlgMgr.AddWebLinkToIcon(""); //Text Input Control settings DlgMgr.EnableTextInputCtrl(); //Web Link Control settings //DlgMgr.EnableHrefCtrl( // "http://www.news2news.com/vfp/?solution=5", // "Extended MessageBox .NET web page", // Color.FromArgb(-16776961)); //CheckBox Control settings DlgMgr.EnableCheckBoxCtrl(); //Message settings DlgMgr.AssignMessageFont("Segoe UI", 14, 0, 0, 0, 0, 0); DlgMgr.MessageFontColor = Color.FromArgb(-13676721); DlgMgr.TimeoutMilliseconds = 10000; DlgMgr.AddWebLinkToMessage(""); //Dialog settings //Turning dialog extended features on DlgMgr.DlgMonitorEnabled = true; MessageBox.Show("Alert", "Hola mundo", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); //DlgMgr members populated upon dialog closing: //Returns True when the dialog gets closed on timeout; //otherwise returns False //DlgMgr.ClosedOnTimeout //Returns aux.button ID that closed the dialog; //otherwise returns zero //DlgMgr.AuxButtonPressed //Returns CheckBox control Checked state; //returns False when the control not shown //DlgMgr.CheckBoxState //Returns text entered in the Text Input control; //returns empty string when the control not shown //DlgMgr.TextInputValue }