LaneIn, LaneOut - Add PictureBox Border

This commit is contained in:
DucDangAnh 2020-07-02 10:03:05 +07:00
parent a8bb5bf67a
commit 2be71a249a
3 changed files with 20 additions and 16 deletions

View File

@ -52,6 +52,7 @@
// //
// pictureBoxPlateImage // pictureBoxPlateImage
// //
this.pictureBoxPlateImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxPlateImage.Location = new System.Drawing.Point(226, 23); this.pictureBoxPlateImage.Location = new System.Drawing.Point(226, 23);
this.pictureBoxPlateImage.Name = "pictureBoxPlateImage"; this.pictureBoxPlateImage.Name = "pictureBoxPlateImage";
this.pictureBoxPlateImage.Size = new System.Drawing.Size(200, 200); this.pictureBoxPlateImage.Size = new System.Drawing.Size(200, 200);
@ -61,6 +62,7 @@
// //
// pictureBoxPlateVideo // pictureBoxPlateVideo
// //
this.pictureBoxPlateVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxPlateVideo.Location = new System.Drawing.Point(15, 23); this.pictureBoxPlateVideo.Location = new System.Drawing.Point(15, 23);
this.pictureBoxPlateVideo.Name = "pictureBoxPlateVideo"; this.pictureBoxPlateVideo.Name = "pictureBoxPlateVideo";
this.pictureBoxPlateVideo.Size = new System.Drawing.Size(200, 200); this.pictureBoxPlateVideo.Size = new System.Drawing.Size(200, 200);
@ -83,6 +85,7 @@
// //
// pictureBoxOverviewImage // pictureBoxOverviewImage
// //
this.pictureBoxOverviewImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxOverviewImage.Location = new System.Drawing.Point(226, 24); this.pictureBoxOverviewImage.Location = new System.Drawing.Point(226, 24);
this.pictureBoxOverviewImage.Name = "pictureBoxOverviewImage"; this.pictureBoxOverviewImage.Name = "pictureBoxOverviewImage";
this.pictureBoxOverviewImage.Size = new System.Drawing.Size(200, 200); this.pictureBoxOverviewImage.Size = new System.Drawing.Size(200, 200);
@ -92,6 +95,7 @@
// //
// pictureBoxOverviewVideo // pictureBoxOverviewVideo
// //
this.pictureBoxOverviewVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxOverviewVideo.Location = new System.Drawing.Point(15, 24); this.pictureBoxOverviewVideo.Location = new System.Drawing.Point(15, 24);
this.pictureBoxOverviewVideo.Name = "pictureBoxOverviewVideo"; this.pictureBoxOverviewVideo.Name = "pictureBoxOverviewVideo";
this.pictureBoxOverviewVideo.Size = new System.Drawing.Size(200, 200); this.pictureBoxOverviewVideo.Size = new System.Drawing.Size(200, 200);

View File

@ -33,6 +33,7 @@
this.pictureBoxPlateImageIn = new System.Windows.Forms.PictureBox(); this.pictureBoxPlateImageIn = new System.Windows.Forms.PictureBox();
this.grbCardInformation = new System.Windows.Forms.GroupBox(); this.grbCardInformation = new System.Windows.Forms.GroupBox();
this.lblCardType = new System.Windows.Forms.Label(); this.lblCardType = new System.Windows.Forms.Label();
this.lblCardTimeOut = new System.Windows.Forms.Label();
this.lblCardTime = new System.Windows.Forms.Label(); this.lblCardTime = new System.Windows.Forms.Label();
this.lblMoneyAmount = new System.Windows.Forms.Label(); this.lblMoneyAmount = new System.Windows.Forms.Label();
this.lblPlateString = new System.Windows.Forms.Label(); this.lblPlateString = new System.Windows.Forms.Label();
@ -45,7 +46,6 @@
this.grbOverviewCamera = new System.Windows.Forms.GroupBox(); this.grbOverviewCamera = new System.Windows.Forms.GroupBox();
this.lblLaneLabel = new System.Windows.Forms.Label(); this.lblLaneLabel = new System.Windows.Forms.Label();
this.lblStatusInfo = new System.Windows.Forms.Label(); this.lblStatusInfo = new System.Windows.Forms.Label();
this.lblCardTimeOut = new System.Windows.Forms.Label();
this.grbPlateRefernce.SuspendLayout(); this.grbPlateRefernce.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxOverviewImageIn)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOverviewImageIn)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxPlateImageIn)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxPlateImageIn)).BeginInit();
@ -73,6 +73,7 @@
// pictureBoxOverviewImageIn // pictureBoxOverviewImageIn
// //
this.pictureBoxOverviewImageIn.Anchor = System.Windows.Forms.AnchorStyles.Left; this.pictureBoxOverviewImageIn.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.pictureBoxOverviewImageIn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxOverviewImageIn.Location = new System.Drawing.Point(13, 270); this.pictureBoxOverviewImageIn.Location = new System.Drawing.Point(13, 270);
this.pictureBoxOverviewImageIn.Name = "pictureBoxOverviewImageIn"; this.pictureBoxOverviewImageIn.Name = "pictureBoxOverviewImageIn";
this.pictureBoxOverviewImageIn.Size = new System.Drawing.Size(200, 200); this.pictureBoxOverviewImageIn.Size = new System.Drawing.Size(200, 200);
@ -83,6 +84,7 @@
// pictureBoxPlateImageIn // pictureBoxPlateImageIn
// //
this.pictureBoxPlateImageIn.Anchor = System.Windows.Forms.AnchorStyles.Left; this.pictureBoxPlateImageIn.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.pictureBoxPlateImageIn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxPlateImageIn.Location = new System.Drawing.Point(13, 23); this.pictureBoxPlateImageIn.Location = new System.Drawing.Point(13, 23);
this.pictureBoxPlateImageIn.Name = "pictureBoxPlateImageIn"; this.pictureBoxPlateImageIn.Name = "pictureBoxPlateImageIn";
this.pictureBoxPlateImageIn.Size = new System.Drawing.Size(200, 200); this.pictureBoxPlateImageIn.Size = new System.Drawing.Size(200, 200);
@ -116,6 +118,15 @@
this.lblCardType.TabIndex = 0; this.lblCardType.TabIndex = 0;
this.lblCardType.Text = "Loại thẻ:"; this.lblCardType.Text = "Loại thẻ:";
// //
// lblCardTimeOut
//
this.lblCardTimeOut.AutoSize = true;
this.lblCardTimeOut.Location = new System.Drawing.Point(462, 64);
this.lblCardTimeOut.Name = "lblCardTimeOut";
this.lblCardTimeOut.Size = new System.Drawing.Size(31, 18);
this.lblCardTimeOut.TabIndex = 0;
this.lblCardTimeOut.Text = "Ra:";
//
// lblCardTime // lblCardTime
// //
this.lblCardTime.AutoSize = true; this.lblCardTime.AutoSize = true;
@ -154,6 +165,7 @@
// //
// pictureBoxPlateImage // pictureBoxPlateImage
// //
this.pictureBoxPlateImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxPlateImage.Location = new System.Drawing.Point(226, 23); this.pictureBoxPlateImage.Location = new System.Drawing.Point(226, 23);
this.pictureBoxPlateImage.Name = "pictureBoxPlateImage"; this.pictureBoxPlateImage.Name = "pictureBoxPlateImage";
this.pictureBoxPlateImage.Size = new System.Drawing.Size(200, 200); this.pictureBoxPlateImage.Size = new System.Drawing.Size(200, 200);
@ -163,6 +175,7 @@
// //
// pictureBoxPlateVideo // pictureBoxPlateVideo
// //
this.pictureBoxPlateVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxPlateVideo.Location = new System.Drawing.Point(15, 23); this.pictureBoxPlateVideo.Location = new System.Drawing.Point(15, 23);
this.pictureBoxPlateVideo.Name = "pictureBoxPlateVideo"; this.pictureBoxPlateVideo.Name = "pictureBoxPlateVideo";
this.pictureBoxPlateVideo.Size = new System.Drawing.Size(200, 200); this.pictureBoxPlateVideo.Size = new System.Drawing.Size(200, 200);
@ -185,6 +198,7 @@
// //
// pictureBoxOverviewImage // pictureBoxOverviewImage
// //
this.pictureBoxOverviewImage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxOverviewImage.Location = new System.Drawing.Point(226, 24); this.pictureBoxOverviewImage.Location = new System.Drawing.Point(226, 24);
this.pictureBoxOverviewImage.Name = "pictureBoxOverviewImage"; this.pictureBoxOverviewImage.Name = "pictureBoxOverviewImage";
this.pictureBoxOverviewImage.Size = new System.Drawing.Size(200, 200); this.pictureBoxOverviewImage.Size = new System.Drawing.Size(200, 200);
@ -194,6 +208,7 @@
// //
// pictureBoxOverviewVideo // pictureBoxOverviewVideo
// //
this.pictureBoxOverviewVideo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.pictureBoxOverviewVideo.Location = new System.Drawing.Point(15, 24); this.pictureBoxOverviewVideo.Location = new System.Drawing.Point(15, 24);
this.pictureBoxOverviewVideo.Name = "pictureBoxOverviewVideo"; this.pictureBoxOverviewVideo.Name = "pictureBoxOverviewVideo";
this.pictureBoxOverviewVideo.Size = new System.Drawing.Size(200, 200); this.pictureBoxOverviewVideo.Size = new System.Drawing.Size(200, 200);
@ -240,15 +255,6 @@
this.lblStatusInfo.Text = "XIN CHÀO"; this.lblStatusInfo.Text = "XIN CHÀO";
this.lblStatusInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.lblStatusInfo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
// //
// lblCardTimeOut
//
this.lblCardTimeOut.AutoSize = true;
this.lblCardTimeOut.Location = new System.Drawing.Point(462, 64);
this.lblCardTimeOut.Name = "lblCardTimeOut";
this.lblCardTimeOut.Size = new System.Drawing.Size(31, 18);
this.lblCardTimeOut.TabIndex = 0;
this.lblCardTimeOut.Text = "Ra:";
//
// LaneOut // LaneOut
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);

View File

@ -126,12 +126,6 @@
<metadata name="pictureBoxPlateImageIn.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="pictureBoxPlateImageIn.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>
<metadata name="pictureBoxOverviewImageIn.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="pictureBoxPlateImageIn.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="grbCardInformation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> <metadata name="grbCardInformation.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value> <value>True</value>
</metadata> </metadata>