Nytt sökfönster tillagt, ny metod för att söka betalningar mellan 2 datum
This commit is contained in:
132
WinFormDi/frmSearchData.Designer.cs
generated
Normal file
132
WinFormDi/frmSearchData.Designer.cs
generated
Normal file
@ -0,0 +1,132 @@
|
||||
namespace WinFormDiApp
|
||||
{
|
||||
partial class frmSearchData
|
||||
{
|
||||
/// <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()
|
||||
{
|
||||
btnClose = new Button();
|
||||
lblHeader = new Label();
|
||||
lblDateFrom = new Label();
|
||||
dtpFrom = new DateTimePicker();
|
||||
lblDateTo = new Label();
|
||||
dtpTo = new DateTimePicker();
|
||||
btnStartSearch = new Button();
|
||||
SuspendLayout();
|
||||
//
|
||||
// btnClose
|
||||
//
|
||||
btnClose.Location = new Point(713, 415);
|
||||
btnClose.Name = "btnClose";
|
||||
btnClose.Size = new Size(75, 23);
|
||||
btnClose.TabIndex = 0;
|
||||
btnClose.Text = "Stäng";
|
||||
btnClose.UseVisualStyleBackColor = true;
|
||||
btnClose.Click += btnClose_Click;
|
||||
//
|
||||
// lblHeader
|
||||
//
|
||||
lblHeader.AutoSize = true;
|
||||
lblHeader.Font = new Font("Segoe UI", 13F, FontStyle.Bold, GraphicsUnit.Point);
|
||||
lblHeader.Location = new Point(21, 17);
|
||||
lblHeader.Name = "lblHeader";
|
||||
lblHeader.Size = new Size(223, 25);
|
||||
lblHeader.TabIndex = 2;
|
||||
lblHeader.Text = "Sök data mellan 2 datum";
|
||||
//
|
||||
// lblDateFrom
|
||||
//
|
||||
lblDateFrom.AutoSize = true;
|
||||
lblDateFrom.Location = new Point(21, 65);
|
||||
lblDateFrom.Name = "lblDateFrom";
|
||||
lblDateFrom.Size = new Size(68, 15);
|
||||
lblDateFrom.TabIndex = 3;
|
||||
lblDateFrom.Text = "Från datum";
|
||||
//
|
||||
// dtpFrom
|
||||
//
|
||||
dtpFrom.Format = DateTimePickerFormat.Short;
|
||||
dtpFrom.Location = new Point(95, 59);
|
||||
dtpFrom.Name = "dtpFrom";
|
||||
dtpFrom.Size = new Size(112, 23);
|
||||
dtpFrom.TabIndex = 4;
|
||||
//
|
||||
// lblDateTo
|
||||
//
|
||||
lblDateTo.AutoSize = true;
|
||||
lblDateTo.Location = new Point(233, 65);
|
||||
lblDateTo.Name = "lblDateTo";
|
||||
lblDateTo.Size = new Size(60, 15);
|
||||
lblDateTo.TabIndex = 5;
|
||||
lblDateTo.Text = "Till datum";
|
||||
//
|
||||
// dtpTo
|
||||
//
|
||||
dtpTo.Format = DateTimePickerFormat.Short;
|
||||
dtpTo.Location = new Point(310, 59);
|
||||
dtpTo.Name = "dtpTo";
|
||||
dtpTo.Size = new Size(100, 23);
|
||||
dtpTo.TabIndex = 6;
|
||||
//
|
||||
// btnStartSearch
|
||||
//
|
||||
btnStartSearch.Location = new Point(443, 61);
|
||||
btnStartSearch.Name = "btnStartSearch";
|
||||
btnStartSearch.Size = new Size(96, 23);
|
||||
btnStartSearch.TabIndex = 7;
|
||||
btnStartSearch.Text = "Starta sökning";
|
||||
btnStartSearch.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// frmSearchData
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(800, 450);
|
||||
Controls.Add(btnStartSearch);
|
||||
Controls.Add(dtpTo);
|
||||
Controls.Add(lblDateTo);
|
||||
Controls.Add(dtpFrom);
|
||||
Controls.Add(lblDateFrom);
|
||||
Controls.Add(lblHeader);
|
||||
Controls.Add(btnClose);
|
||||
Name = "frmSearchData";
|
||||
StartPosition = FormStartPosition.CenterScreen;
|
||||
Text = "frmSearchData";
|
||||
ResumeLayout(false);
|
||||
PerformLayout();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Button btnClose;
|
||||
private Label lblHeader;
|
||||
private Label lblDateFrom;
|
||||
private DateTimePicker dtpFrom;
|
||||
private Label lblDateTo;
|
||||
private DateTimePicker dtpTo;
|
||||
private Button btnStartSearch;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user