/// /// Copyright (c) 2013-2015 Senus Slovensko a.s. /// namespace TBF.UI.Shared { partial class ErrorDlg { private string m_message; public string Message { get { return m_message; } set { m_message = value; textBoxMessage.Text = m_message; } } /// /// 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() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ErrorDlg)); this.btnCancel = new System.Windows.Forms.Button(); this.btnIgnore = new System.Windows.Forms.Button(); this.btnRetry = new System.Windows.Forms.Button(); this.textBoxMessage = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // btnCancel // this.btnCancel.ImageKey = global::TBF.Resources.Strings.Closing_the_tank; resources.ApplyResources(this.btnCancel, "btnCancel"); this.btnCancel.Name = "btnCancel"; this.btnCancel.UseVisualStyleBackColor = true; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnIgnore // this.btnIgnore.ImageKey = global::TBF.Resources.Strings.Closing_the_tank; resources.ApplyResources(this.btnIgnore, "btnIgnore"); this.btnIgnore.Name = "btnIgnore"; this.btnIgnore.UseVisualStyleBackColor = true; this.btnIgnore.Click += new System.EventHandler(this.btnIgnore_Click); // // btnRetry // this.btnRetry.ImageKey = global::TBF.Resources.Strings.Closing_the_tank; resources.ApplyResources(this.btnRetry, "btnRetry"); this.btnRetry.Name = "btnRetry"; this.btnRetry.UseVisualStyleBackColor = true; this.btnRetry.Click += new System.EventHandler(this.btnRetry_Click); // // textBoxMessage // resources.ApplyResources(this.textBoxMessage, "textBoxMessage"); this.textBoxMessage.Name = "textBoxMessage"; // // ErrorDlg // resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.textBoxMessage); this.Controls.Add(this.btnRetry); this.Controls.Add(this.btnIgnore); this.Controls.Add(this.btnCancel); this.Name = "ErrorDlg"; this.Load += new System.EventHandler(this.ErrorDlg_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnCancel; private System.Windows.Forms.Button btnIgnore; private System.Windows.Forms.Button btnRetry; private System.Windows.Forms.TextBox textBoxMessage; } }