1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
namespace KeePass.Forms
{
partial class TextEncodingForm
{
/// <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()
{
this.m_btnOK = new System.Windows.Forms.Button();
this.m_btnCancel = new System.Windows.Forms.Button();
this.m_lblSelEnc = new System.Windows.Forms.Label();
this.m_cmbEnc = new System.Windows.Forms.ComboBox();
this.m_lblPreview = new System.Windows.Forms.Label();
this.m_rtbPreview = new KeePass.UI.CustomRichTextBoxEx();
this.m_lblContext = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// m_btnOK
//
this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.m_btnOK.Location = new System.Drawing.Point(459, 12);
this.m_btnOK.Name = "m_btnOK";
this.m_btnOK.Size = new System.Drawing.Size(75, 23);
this.m_btnOK.TabIndex = 0;
this.m_btnOK.Text = "OK";
this.m_btnOK.UseVisualStyleBackColor = true;
this.m_btnOK.Click += new System.EventHandler(this.OnBtnOK);
//
// m_btnCancel
//
this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.m_btnCancel.Location = new System.Drawing.Point(459, 41);
this.m_btnCancel.Name = "m_btnCancel";
this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
this.m_btnCancel.TabIndex = 1;
this.m_btnCancel.Text = "Cancel";
this.m_btnCancel.UseVisualStyleBackColor = true;
this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
//
// m_lblSelEnc
//
this.m_lblSelEnc.AutoSize = true;
this.m_lblSelEnc.Location = new System.Drawing.Point(9, 37);
this.m_lblSelEnc.Name = "m_lblSelEnc";
this.m_lblSelEnc.Size = new System.Drawing.Size(155, 13);
this.m_lblSelEnc.TabIndex = 3;
this.m_lblSelEnc.Text = "&Select the encoding of the text:";
//
// m_cmbEnc
//
this.m_cmbEnc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.m_cmbEnc.FormattingEnabled = true;
this.m_cmbEnc.Location = new System.Drawing.Point(12, 53);
this.m_cmbEnc.MaxDropDownItems = 12;
this.m_cmbEnc.Name = "m_cmbEnc";
this.m_cmbEnc.Size = new System.Drawing.Size(385, 21);
this.m_cmbEnc.TabIndex = 4;
this.m_cmbEnc.SelectedIndexChanged += new System.EventHandler(this.OnEncSelectedIndexChanged);
//
// m_lblPreview
//
this.m_lblPreview.AutoSize = true;
this.m_lblPreview.Location = new System.Drawing.Point(9, 86);
this.m_lblPreview.Name = "m_lblPreview";
this.m_lblPreview.Size = new System.Drawing.Size(71, 13);
this.m_lblPreview.TabIndex = 5;
this.m_lblPreview.Text = "&Text preview:";
//
// m_rtbPreview
//
this.m_rtbPreview.AcceptsTab = true;
this.m_rtbPreview.DetectUrls = false;
this.m_rtbPreview.Location = new System.Drawing.Point(12, 102);
this.m_rtbPreview.Name = "m_rtbPreview";
this.m_rtbPreview.ReadOnly = true;
this.m_rtbPreview.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth;
this.m_rtbPreview.Size = new System.Drawing.Size(522, 314);
this.m_rtbPreview.TabIndex = 6;
this.m_rtbPreview.Text = "";
this.m_rtbPreview.WordWrap = false;
//
// m_lblContext
//
this.m_lblContext.Location = new System.Drawing.Point(9, 13);
this.m_lblContext.Name = "m_lblContext";
this.m_lblContext.Size = new System.Drawing.Size(444, 17);
this.m_lblContext.TabIndex = 2;
this.m_lblContext.Text = "<>";
//
// TextEncodingForm
//
this.AcceptButton = this.m_btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.m_btnCancel;
this.ClientSize = new System.Drawing.Size(546, 428);
this.Controls.Add(this.m_lblContext);
this.Controls.Add(this.m_rtbPreview);
this.Controls.Add(this.m_lblPreview);
this.Controls.Add(this.m_cmbEnc);
this.Controls.Add(this.m_lblSelEnc);
this.Controls.Add(this.m_btnCancel);
this.Controls.Add(this.m_btnOK);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TextEncodingForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Text Encoding";
this.Load += new System.EventHandler(this.OnFormLoad);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button m_btnOK;
private System.Windows.Forms.Button m_btnCancel;
private System.Windows.Forms.Label m_lblSelEnc;
private System.Windows.Forms.ComboBox m_cmbEnc;
private System.Windows.Forms.Label m_lblPreview;
private KeePass.UI.CustomRichTextBoxEx m_rtbPreview;
private System.Windows.Forms.Label m_lblContext;
}
}
|