SafeDispatch/SubscriberAndUserManager/CustomMessageBox.Designer.cs
2024-02-22 18:43:59 +02:00

142 lines
6.7 KiB
C#

namespace SubscriberAndUserManager
{
partial class CustomMessageBox
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomMessageBox));
this.lbMess = new Telerik.WinControls.UI.RadLabel();
this.panelImage = new Telerik.WinControls.UI.RadPanel();
this.btnOK = new Telerik.WinControls.UI.RadButton();
this.btnNO = new Telerik.WinControls.UI.RadButton();
this.btnYes = new Telerik.WinControls.UI.RadButton();
((System.ComponentModel.ISupportInitialize)(this.lbMess)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelImage)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnOK)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnNO)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.btnYes)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
this.SuspendLayout();
//
// lbMess
//
this.lbMess.AutoSize = false;
this.lbMess.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.lbMess.Location = new System.Drawing.Point(76, 12);
this.lbMess.Name = "lbMess";
this.lbMess.Size = new System.Drawing.Size(277, 57);
this.lbMess.TabIndex = 0;
this.lbMess.Text = "Message text here";
this.lbMess.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
//
// panelImage
//
this.panelImage.BackgroundImage = global::SubscriberAndUserManager.Properties.Resources.exclamation;
this.panelImage.ForeColor = System.Drawing.Color.Transparent;
this.panelImage.Location = new System.Drawing.Point(12, 12);
this.panelImage.Margin = new System.Windows.Forms.Padding(0);
this.panelImage.Name = "panelImage";
this.panelImage.Size = new System.Drawing.Size(57, 57);
this.panelImage.TabIndex = 1;
((Telerik.WinControls.Primitives.BorderPrimitive)(this.panelImage.GetChildAt(0).GetChildAt(1))).Visibility = Telerik.WinControls.ElementVisibility.Collapsed;
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnOK.Location = new System.Drawing.Point(161, 80);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(99, 24);
this.btnOK.TabIndex = 2;
this.btnOK.Text = "OK";
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnNO
//
this.btnNO.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnNO.Enabled = false;
this.btnNO.Location = new System.Drawing.Point(278, 80);
this.btnNO.Name = "btnNO";
this.btnNO.Size = new System.Drawing.Size(75, 24);
this.btnNO.TabIndex = 3;
this.btnNO.Text = "No";
this.btnNO.Visible = false;
this.btnNO.Click += new System.EventHandler(this.btnNO_Click);
//
// btnYes
//
this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnYes.Enabled = false;
this.btnYes.Location = new System.Drawing.Point(65, 80);
this.btnYes.Name = "btnYes";
this.btnYes.Size = new System.Drawing.Size(75, 24);
this.btnYes.TabIndex = 4;
this.btnYes.Text = "Yes";
this.btnYes.Visible = false;
this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
//
// CustomMessageBox
//
this.ClientSize = new System.Drawing.Size(405, 116);
this.Controls.Add(this.btnYes);
this.Controls.Add(this.btnNO);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.panelImage);
this.Controls.Add(this.lbMess);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "CustomMessageBox";
//
//
//
this.RootElement.ApplyShapeToControl = true;
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "CustomMessageBox";
this.ThemeName = "ControlDefault";
((System.ComponentModel.ISupportInitialize)(this.lbMess)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.panelImage)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.btnOK)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.btnNO)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.btnYes)).EndInit();
((System.ComponentModel.ISupportInitialize)(this)).EndInit();
this.ResumeLayout(false);
}
#endregion
private Telerik.WinControls.UI.RadLabel lbMess;
private Telerik.WinControls.UI.RadPanel panelImage;
private Telerik.WinControls.UI.RadButton btnOK;
private Telerik.WinControls.UI.RadButton btnNO;
private Telerik.WinControls.UI.RadButton btnYes;
}
}