New vue for reading in + some new repositories

This commit is contained in:
2023-08-24 23:00:16 +02:00
parent 70c2d47e7b
commit 374d401692
10 changed files with 565 additions and 1 deletions

View File

@ -31,6 +31,7 @@
helloText = new Label();
goodbyeText = new Label();
btnCheckPayments = new Button();
btnLoadPayments = new Button();
SuspendLayout();
//
// helloText
@ -63,11 +64,22 @@
btnCheckPayments.UseVisualStyleBackColor = true;
btnCheckPayments.Click += btnCheckPayments_Click;
//
// btnLoadPayments
//
btnLoadPayments.Location = new Point(73, 75);
btnLoadPayments.Name = "btnLoadPayments";
btnLoadPayments.Size = new Size(156, 23);
btnLoadPayments.TabIndex = 3;
btnLoadPayments.Text = "Ladda betalningar";
btnLoadPayments.UseVisualStyleBackColor = true;
btnLoadPayments.Click += btnLoadPayments_Click;
//
// MainWindow
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(800, 450);
Controls.Add(btnLoadPayments);
Controls.Add(btnCheckPayments);
Controls.Add(goodbyeText);
Controls.Add(helloText);
@ -84,5 +96,6 @@
private Label helloText;
private Label goodbyeText;
private Button btnCheckPayments;
private Button btnLoadPayments;
}
}