namespace qdr.app.bundleboiler.ui.Dialogs { partial class ErrorMessageDialog { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { panel1 = new Panel(); lCaption = new Label(); tbDetail = new TextBox(); butClose = new Button(); butCopyClipboard = new Button(); SuspendLayout(); // // panel1 // panel1.BackgroundImage = Properties.Resources.error_icon_25243; panel1.BackgroundImageLayout = ImageLayout.Stretch; panel1.Location = new Point(12, 12); panel1.Name = "panel1"; panel1.Size = new Size(101, 100); panel1.TabIndex = 0; // // lCaption // lCaption.Location = new Point(119, 12); lCaption.Name = "lCaption"; lCaption.Size = new Size(415, 44); lCaption.TabIndex = 1; lCaption.Text = "label1"; // // tbDetail // tbDetail.Location = new Point(119, 115); tbDetail.Multiline = true; tbDetail.Name = "tbDetail"; tbDetail.ReadOnly = true; tbDetail.ScrollBars = ScrollBars.Vertical; tbDetail.Size = new Size(423, 136); tbDetail.TabIndex = 2; // // butClose // butClose.Location = new Point(467, 257); butClose.Name = "butClose"; butClose.Size = new Size(75, 23); butClose.TabIndex = 3; butClose.Text = "Close"; butClose.UseVisualStyleBackColor = true; butClose.Click += butClose_Click; // // butCopyClipboard // butCopyClipboard.BackgroundImageLayout = ImageLayout.Zoom; butCopyClipboard.Image = Properties.Resources.copy2clipboard; butCopyClipboard.ImageAlign = ContentAlignment.MiddleLeft; butCopyClipboard.Location = new Point(515, 89); butCopyClipboard.Name = "butCopyClipboard"; butCopyClipboard.Size = new Size(27, 23); butCopyClipboard.TabIndex = 4; butCopyClipboard.UseVisualStyleBackColor = true; butCopyClipboard.Click += butCopyClipboard_Click; // // ErrorMessageDialog // AutoScaleDimensions = new SizeF(7F, 15F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(559, 292); ControlBox = false; Controls.Add(butCopyClipboard); Controls.Add(butClose); Controls.Add(tbDetail); Controls.Add(lCaption); Controls.Add(panel1); FormBorderStyle = FormBorderStyle.FixedDialog; Name = "ErrorMessageDialog"; Text = "Error"; ResumeLayout(false); PerformLayout(); } #endregion private Panel panel1; private Label lCaption; private TextBox tbDetail; private Button butClose; private Button butCopyClipboard; } }