version 1.0.1

This commit is contained in:
meelstorm
2025-09-19 12:15:11 +02:00
parent 6c0b778ba6
commit 0abd273154
4 changed files with 56 additions and 0 deletions

View File

@@ -35,6 +35,7 @@
singleCameraControl1 = new VisionBuilder.UI.Windows.Components.SingleCameraControl();
btnTestMode = new MaterialSkin.Controls.MaterialRaisedButton();
flowLayoutPanel1 = new FlowLayoutPanel();
lblVersion = new Label();
flowLayoutPanel1.SuspendLayout();
SuspendLayout();
//
@@ -141,11 +142,23 @@
flowLayoutPanel1.Size = new Size(728, 80);
flowLayoutPanel1.TabIndex = 12;
//
// lblVersion
//
lblVersion.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
lblVersion.BackColor = Color.Transparent;
lblVersion.Location = new Point(1768, 1056);
lblVersion.Name = "lblVersion";
lblVersion.Size = new Size(148, 23);
lblVersion.TabIndex = 13;
lblVersion.Text = "Version 0.0.0.0";
lblVersion.TextAlign = ContentAlignment.TopRight;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1920, 1080);
Controls.Add(lblVersion);
Controls.Add(flowLayoutPanel1);
Controls.Add(singleCameraControl1);
Controls.Add(materialDivider1);
@@ -165,5 +178,6 @@
private Components.SingleCameraControl singleCameraControl1;
private MaterialSkin.Controls.MaterialRaisedButton btnTestMode;
private FlowLayoutPanel flowLayoutPanel1;
private Label lblVersion;
}
}