Nytt sökfönster tillagt, ny metod för att söka betalningar mellan 2 datum
This commit is contained in:
30
WinFormDi/MainWindow.Designer.cs
generated
30
WinFormDi/MainWindow.Designer.cs
generated
@ -32,6 +32,8 @@
|
||||
goodbyeText = new Label();
|
||||
btnCheckPayments = new Button();
|
||||
btnLoadPayments = new Button();
|
||||
btnSearchPayments = new Button();
|
||||
btnClose = new Button();
|
||||
SuspendLayout();
|
||||
//
|
||||
// helloText
|
||||
@ -56,7 +58,7 @@
|
||||
//
|
||||
// btnCheckPayments
|
||||
//
|
||||
btnCheckPayments.Location = new Point(73, 46);
|
||||
btnCheckPayments.Location = new Point(75, 70);
|
||||
btnCheckPayments.Name = "btnCheckPayments";
|
||||
btnCheckPayments.Size = new Size(156, 23);
|
||||
btnCheckPayments.TabIndex = 2;
|
||||
@ -66,7 +68,7 @@
|
||||
//
|
||||
// btnLoadPayments
|
||||
//
|
||||
btnLoadPayments.Location = new Point(73, 75);
|
||||
btnLoadPayments.Location = new Point(75, 41);
|
||||
btnLoadPayments.Name = "btnLoadPayments";
|
||||
btnLoadPayments.Size = new Size(156, 23);
|
||||
btnLoadPayments.TabIndex = 3;
|
||||
@ -74,11 +76,33 @@
|
||||
btnLoadPayments.UseVisualStyleBackColor = true;
|
||||
btnLoadPayments.Click += btnLoadPayments_Click;
|
||||
//
|
||||
// btnSearchPayments
|
||||
//
|
||||
btnSearchPayments.Location = new Point(75, 99);
|
||||
btnSearchPayments.Name = "btnSearchPayments";
|
||||
btnSearchPayments.Size = new Size(156, 23);
|
||||
btnSearchPayments.TabIndex = 4;
|
||||
btnSearchPayments.Text = "Sök betalningar";
|
||||
btnSearchPayments.UseVisualStyleBackColor = true;
|
||||
btnSearchPayments.Click += btnSearchPayments_Click;
|
||||
//
|
||||
// btnClose
|
||||
//
|
||||
btnClose.Location = new Point(713, 420);
|
||||
btnClose.Name = "btnClose";
|
||||
btnClose.Size = new Size(75, 23);
|
||||
btnClose.TabIndex = 5;
|
||||
btnClose.Text = "Stäng";
|
||||
btnClose.UseVisualStyleBackColor = true;
|
||||
btnClose.Click += btnClose_Click;
|
||||
//
|
||||
// MainWindow
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(800, 450);
|
||||
Controls.Add(btnClose);
|
||||
Controls.Add(btnSearchPayments);
|
||||
Controls.Add(btnLoadPayments);
|
||||
Controls.Add(btnCheckPayments);
|
||||
Controls.Add(goodbyeText);
|
||||
@ -98,5 +122,7 @@
|
||||
private Label goodbyeText;
|
||||
private Button btnCheckPayments;
|
||||
private Button btnLoadPayments;
|
||||
private Button btnSearchPayments;
|
||||
private Button btnClose;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user