Files
WinFormDiApp/WinFormDi/frmEditPayment.Designer.cs
2023-09-15 17:59:58 +02:00

289 lines
10 KiB
C#

namespace WinFormDiApp
{
partial class frmEditPayment
{
/// <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()
{
lblHeader = new Label();
rbNew = new RadioButton();
rbEdit = new RadioButton();
lblIdHeader = new Label();
txtId = new TextBox();
txtAccount = new TextBox();
lblKonto = new Label();
txtReceiver = new TextBox();
lblReceiver = new Label();
txtAmount = new TextBox();
lblAmount = new Label();
lblPayDate = new Label();
txtPayInfo = new TextBox();
lblBetInfo = new Label();
tblChangeRegTime = new Label();
dtpPayDate = new DateTimePicker();
btnSave = new Button();
btnClose = new Button();
btnSearch = new Button();
txtSaved = new TextBox();
SuspendLayout();
//
// lblHeader
//
lblHeader.AutoSize = true;
lblHeader.Font = new Font("Segoe UI", 12F, FontStyle.Regular, GraphicsUnit.Point);
lblHeader.Location = new Point(30, 29);
lblHeader.Name = "lblHeader";
lblHeader.Size = new Size(216, 21);
lblHeader.TabIndex = 0;
lblHeader.Text = "Manuell inmatning / justering";
//
// rbNew
//
rbNew.AutoSize = true;
rbNew.Checked = true;
rbNew.Location = new Point(33, 75);
rbNew.Name = "rbNew";
rbNew.Size = new Size(103, 19);
rbNew.TabIndex = 2;
rbNew.TabStop = true;
rbNew.Text = "Ny registrering";
rbNew.UseVisualStyleBackColor = true;
rbNew.CheckedChanged += rbNew_CheckedChanged;
//
// rbEdit
//
rbEdit.AutoSize = true;
rbEdit.Location = new Point(33, 100);
rbEdit.Name = "rbEdit";
rbEdit.Size = new Size(68, 19);
rbEdit.TabIndex = 3;
rbEdit.Text = "Ändring";
rbEdit.UseVisualStyleBackColor = true;
rbEdit.CheckedChanged += rbEdit_CheckedChanged;
//
// lblIdHeader
//
lblIdHeader.AutoSize = true;
lblIdHeader.Location = new Point(33, 134);
lblIdHeader.Name = "lblIdHeader";
lblIdHeader.Size = new Size(51, 15);
lblIdHeader.TabIndex = 4;
lblIdHeader.Text = "Identitet";
//
// txtId
//
txtId.Enabled = false;
txtId.Location = new Point(133, 131);
txtId.Name = "txtId";
txtId.Size = new Size(139, 23);
txtId.TabIndex = 5;
//
// txtAccount
//
txtAccount.Location = new Point(133, 163);
txtAccount.Name = "txtAccount";
txtAccount.Size = new Size(139, 23);
txtAccount.TabIndex = 7;
//
// lblKonto
//
lblKonto.AutoSize = true;
lblKonto.Location = new Point(33, 166);
lblKonto.Name = "lblKonto";
lblKonto.Size = new Size(39, 15);
lblKonto.TabIndex = 6;
lblKonto.Text = "Konto";
//
// txtReceiver
//
txtReceiver.Location = new Point(133, 201);
txtReceiver.Name = "txtReceiver";
txtReceiver.Size = new Size(353, 23);
txtReceiver.TabIndex = 9;
//
// lblReceiver
//
lblReceiver.AutoSize = true;
lblReceiver.Location = new Point(33, 204);
lblReceiver.Name = "lblReceiver";
lblReceiver.Size = new Size(62, 15);
lblReceiver.TabIndex = 8;
lblReceiver.Text = "Mottagare";
//
// txtAmount
//
txtAmount.Location = new Point(133, 239);
txtAmount.Name = "txtAmount";
txtAmount.Size = new Size(139, 23);
txtAmount.TabIndex = 11;
//
// lblAmount
//
lblAmount.AutoSize = true;
lblAmount.Location = new Point(33, 242);
lblAmount.Name = "lblAmount";
lblAmount.Size = new Size(44, 15);
lblAmount.TabIndex = 10;
lblAmount.Text = "Belopp";
//
// lblPayDate
//
lblPayDate.AutoSize = true;
lblPayDate.Location = new Point(33, 280);
lblPayDate.Name = "lblPayDate";
lblPayDate.Size = new Size(67, 15);
lblPayDate.TabIndex = 12;
lblPayDate.Text = "Förfallodag";
//
// txtPayInfo
//
txtPayInfo.Location = new Point(133, 315);
txtPayInfo.Name = "txtPayInfo";
txtPayInfo.Size = new Size(139, 23);
txtPayInfo.TabIndex = 15;
//
// lblBetInfo
//
lblBetInfo.AutoSize = true;
lblBetInfo.Location = new Point(30, 318);
lblBetInfo.Name = "lblBetInfo";
lblBetInfo.Size = new Size(56, 15);
lblBetInfo.TabIndex = 14;
lblBetInfo.Text = "Avisering";
//
// tblChangeRegTime
//
tblChangeRegTime.AutoSize = true;
tblChangeRegTime.Location = new Point(33, 356);
tblChangeRegTime.Name = "tblChangeRegTime";
tblChangeRegTime.Size = new Size(89, 15);
tblChangeRegTime.TabIndex = 16;
tblChangeRegTime.Text = "Ändring Sparad";
//
// dtpPayDate
//
dtpPayDate.Format = DateTimePickerFormat.Short;
dtpPayDate.Location = new Point(133, 274);
dtpPayDate.Name = "dtpPayDate";
dtpPayDate.Size = new Size(139, 23);
dtpPayDate.TabIndex = 18;
//
// btnSave
//
btnSave.Location = new Point(330, 464);
btnSave.Name = "btnSave";
btnSave.Size = new Size(75, 23);
btnSave.TabIndex = 19;
btnSave.Text = "Spara";
btnSave.UseVisualStyleBackColor = true;
btnSave.Click += btnSave_Click;
//
// btnClose
//
btnClose.Location = new Point(411, 464);
btnClose.Name = "btnClose";
btnClose.Size = new Size(75, 23);
btnClose.TabIndex = 20;
btnClose.Text = "Avbryt";
btnClose.UseVisualStyleBackColor = true;
btnClose.Click += btnClose_Click;
//
// btnSearch
//
btnSearch.Location = new Point(278, 130);
btnSearch.Name = "btnSearch";
btnSearch.Size = new Size(75, 23);
btnSearch.TabIndex = 21;
btnSearch.Text = "Sök post";
btnSearch.UseVisualStyleBackColor = true;
btnSearch.Visible = false;
btnSearch.Click += btnSearch_Click;
//
// txtSaved
//
txtSaved.Enabled = false;
txtSaved.Location = new Point(133, 353);
txtSaved.Name = "txtSaved";
txtSaved.Size = new Size(139, 23);
txtSaved.TabIndex = 17;
//
// frmEditPayment
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(527, 509);
Controls.Add(btnSearch);
Controls.Add(btnClose);
Controls.Add(btnSave);
Controls.Add(dtpPayDate);
Controls.Add(txtSaved);
Controls.Add(tblChangeRegTime);
Controls.Add(txtPayInfo);
Controls.Add(lblBetInfo);
Controls.Add(lblPayDate);
Controls.Add(txtAmount);
Controls.Add(lblAmount);
Controls.Add(txtReceiver);
Controls.Add(lblReceiver);
Controls.Add(txtAccount);
Controls.Add(lblKonto);
Controls.Add(txtId);
Controls.Add(lblIdHeader);
Controls.Add(rbEdit);
Controls.Add(rbNew);
Controls.Add(lblHeader);
Name = "frmEditPayment";
StartPosition = FormStartPosition.CenterScreen;
Text = "frmEditPayment";
ResumeLayout(false);
PerformLayout();
}
#endregion
private Label lblHeader;
private RadioButton rbNew;
private RadioButton rbEdit;
private Label lblIdHeader;
private TextBox txtId;
private TextBox txtAccount;
private Label lblKonto;
private TextBox txtReceiver;
private Label lblReceiver;
private TextBox txtAmount;
private Label lblAmount;
private TextBox txtLastPaydate;
private Label lblPayDate;
private TextBox txtPayInfo;
private Label lblBetInfo;
private Label tblChangeRegTime;
private DateTimePicker dtpPayDate;
private Button btnSave;
private Button btnClose;
private Button btnSearch;
private TextBox txtSaved;
}
}