| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- namespace qdr.app.bundleboiler.ui.Dialogs
- {
- partial class ErrorMessageDialog
- {
- /// <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()
- {
- 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, 35);
- 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(96F, 96F);
- AutoScaleMode = AutoScaleMode.Dpi;
- AutoSize = true;
- ClientSize = new Size(567, 322);
- 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;
- }
- }
|