Repositories inserted and new page for accounts inserted
This commit is contained in:
116
WinFormDi/frmPayments.Designer.cs
generated
Normal file
116
WinFormDi/frmPayments.Designer.cs
generated
Normal file
@ -0,0 +1,116 @@
|
||||
namespace WinFormDiApp
|
||||
{
|
||||
partial class frmPayments
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
lvPayments = new ListView();
|
||||
ch1_Id = new ColumnHeader();
|
||||
ch2_Mottagare = new ColumnHeader();
|
||||
ch3_Konto = new ColumnHeader();
|
||||
ch4_Belopp = new ColumnHeader();
|
||||
ch5_Förfallodag = new ColumnHeader();
|
||||
ch6_Avisering = new ColumnHeader();
|
||||
btnClose = new Button();
|
||||
SuspendLayout();
|
||||
//
|
||||
// lvPayments
|
||||
//
|
||||
lvPayments.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
|
||||
lvPayments.BackColor = Color.FromArgb(192, 255, 255);
|
||||
lvPayments.Columns.AddRange(new ColumnHeader[] { ch1_Id, ch2_Mottagare, ch3_Konto, ch4_Belopp, ch5_Förfallodag, ch6_Avisering });
|
||||
lvPayments.Location = new Point(28, 55);
|
||||
lvPayments.Name = "lvPayments";
|
||||
lvPayments.Size = new Size(805, 286);
|
||||
lvPayments.TabIndex = 0;
|
||||
lvPayments.UseCompatibleStateImageBehavior = false;
|
||||
lvPayments.View = View.Details;
|
||||
//
|
||||
// ch1_Id
|
||||
//
|
||||
ch1_Id.Text = "Id";
|
||||
//
|
||||
// ch2_Mottagare
|
||||
//
|
||||
ch2_Mottagare.Text = "Mottagare";
|
||||
ch2_Mottagare.Width = 120;
|
||||
//
|
||||
// ch3_Konto
|
||||
//
|
||||
ch3_Konto.Text = "Konto";
|
||||
ch3_Konto.Width = 100;
|
||||
//
|
||||
// ch4_Belopp
|
||||
//
|
||||
ch4_Belopp.Text = "Belopp";
|
||||
ch4_Belopp.Width = 100;
|
||||
//
|
||||
// ch5_Förfallodag
|
||||
//
|
||||
ch5_Förfallodag.Text = "Förfallodag";
|
||||
ch5_Förfallodag.Width = 100;
|
||||
//
|
||||
// ch6_Avisering
|
||||
//
|
||||
ch6_Avisering.Text = "Avisering";
|
||||
ch6_Avisering.Width = 100;
|
||||
//
|
||||
// btnClose
|
||||
//
|
||||
btnClose.Location = new Point(758, 418);
|
||||
btnClose.Name = "btnClose";
|
||||
btnClose.Size = new Size(75, 23);
|
||||
btnClose.TabIndex = 1;
|
||||
btnClose.Text = "Stäng";
|
||||
btnClose.UseVisualStyleBackColor = true;
|
||||
btnClose.Click += btnClose_Click;
|
||||
//
|
||||
// frmPayments
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(856, 453);
|
||||
Controls.Add(btnClose);
|
||||
Controls.Add(lvPayments);
|
||||
Name = "frmPayments";
|
||||
Text = "frmPayments";
|
||||
Load += frmPayments_Load;
|
||||
ResumeLayout(false);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private ListView lvPayments;
|
||||
private ColumnHeader ch1_Id;
|
||||
private ColumnHeader ch2_Mottagare;
|
||||
private ColumnHeader ch3_Konto;
|
||||
private ColumnHeader ch4_Belopp;
|
||||
private ColumnHeader ch6_Avisering;
|
||||
private Button btnClose;
|
||||
private ColumnHeader ch5_Förfallodag;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user