110 lines
3.4 KiB
C#
110 lines
3.4 KiB
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
namespace TBF.Forms
|
|
{
|
|
|
|
partial class ErrorDlg
|
|
{
|
|
private string m_message;
|
|
|
|
public string Message
|
|
{
|
|
get
|
|
{
|
|
return m_message;
|
|
}
|
|
|
|
set
|
|
{
|
|
m_message = value;
|
|
textBoxMessage.Text = m_message;
|
|
}
|
|
}
|
|
|
|
|
|
/// <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(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;
|
|
}
|
|
} |