This is the latest working repository used in our demo video for the Maxim to display temperature readings on Bluetooth
hspguisourcev301/HspGuiSourceV301/HSPGui/SplashScreen.Designer.cs@5:bc128a16232f, 2021-05-02 (annotated)
- Committer:
- darienf
- Date:
- Sun May 02 23:09:04 2021 +0000
- Revision:
- 5:bc128a16232f
- Parent:
- 3:36de8b9e4b1a
This is the program that was last used, that has the working temperature and some comments
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 3:36de8b9e4b1a | 1 | namespace HealthSensorPlatform |
darienf | 3:36de8b9e4b1a | 2 | { |
darienf | 3:36de8b9e4b1a | 3 | partial class SplashScreen |
darienf | 3:36de8b9e4b1a | 4 | { |
darienf | 3:36de8b9e4b1a | 5 | /// <summary> |
darienf | 3:36de8b9e4b1a | 6 | /// Required designer variable. |
darienf | 3:36de8b9e4b1a | 7 | /// </summary> |
darienf | 3:36de8b9e4b1a | 8 | private System.ComponentModel.IContainer components = null; |
darienf | 3:36de8b9e4b1a | 9 | |
darienf | 3:36de8b9e4b1a | 10 | /// <summary> |
darienf | 3:36de8b9e4b1a | 11 | /// Clean up any resources being used. |
darienf | 3:36de8b9e4b1a | 12 | /// </summary> |
darienf | 3:36de8b9e4b1a | 13 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
darienf | 3:36de8b9e4b1a | 14 | protected override void Dispose(bool disposing) |
darienf | 3:36de8b9e4b1a | 15 | { |
darienf | 3:36de8b9e4b1a | 16 | if (disposing && (components != null)) |
darienf | 3:36de8b9e4b1a | 17 | { |
darienf | 3:36de8b9e4b1a | 18 | components.Dispose(); |
darienf | 3:36de8b9e4b1a | 19 | } |
darienf | 3:36de8b9e4b1a | 20 | base.Dispose(disposing); |
darienf | 3:36de8b9e4b1a | 21 | } |
darienf | 3:36de8b9e4b1a | 22 | |
darienf | 3:36de8b9e4b1a | 23 | #region Windows Form Designer generated code |
darienf | 3:36de8b9e4b1a | 24 | |
darienf | 3:36de8b9e4b1a | 25 | /// <summary> |
darienf | 3:36de8b9e4b1a | 26 | /// Required method for Designer support - do not modify |
darienf | 3:36de8b9e4b1a | 27 | /// the contents of this method with the code editor. |
darienf | 3:36de8b9e4b1a | 28 | /// </summary> |
darienf | 3:36de8b9e4b1a | 29 | private void InitializeComponent() |
darienf | 3:36de8b9e4b1a | 30 | { |
darienf | 3:36de8b9e4b1a | 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SplashScreen)); |
darienf | 3:36de8b9e4b1a | 32 | this.maximSplashScreen1 = new MaximStyle.MaximSplashScreen(); |
darienf | 3:36de8b9e4b1a | 33 | this.btn_OK = new MaximStyle.MaximButton(); |
darienf | 3:36de8b9e4b1a | 34 | this.SuspendLayout(); |
darienf | 3:36de8b9e4b1a | 35 | // |
darienf | 3:36de8b9e4b1a | 36 | // maximSplashScreen1 |
darienf | 3:36de8b9e4b1a | 37 | // |
darienf | 3:36de8b9e4b1a | 38 | this.maximSplashScreen1.ApplicationIconImage = null; |
darienf | 3:36de8b9e4b1a | 39 | this.maximSplashScreen1.ApplicationName = "RpcClientExample"; |
darienf | 3:36de8b9e4b1a | 40 | this.maximSplashScreen1.BackColor = System.Drawing.Color.White; |
darienf | 3:36de8b9e4b1a | 41 | this.maximSplashScreen1.Checked = false; |
darienf | 3:36de8b9e4b1a | 42 | this.maximSplashScreen1.CopyrightString = "© June 2013 Maxim Integrated Products, Inc."; |
darienf | 3:36de8b9e4b1a | 43 | this.maximSplashScreen1.Font = new System.Drawing.Font("Arial", 11F); |
darienf | 3:36de8b9e4b1a | 44 | this.maximSplashScreen1.Location = new System.Drawing.Point(0, 0); |
darienf | 3:36de8b9e4b1a | 45 | this.maximSplashScreen1.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); |
darienf | 3:36de8b9e4b1a | 46 | this.maximSplashScreen1.Name = "maximSplashScreen1"; |
darienf | 3:36de8b9e4b1a | 47 | this.maximSplashScreen1.NonMaximCopyrightString = ""; |
darienf | 3:36de8b9e4b1a | 48 | this.maximSplashScreen1.Size = new System.Drawing.Size(400, 320); |
darienf | 3:36de8b9e4b1a | 49 | this.maximSplashScreen1.TabIndex = 0; |
darienf | 3:36de8b9e4b1a | 50 | this.maximSplashScreen1.VersionString = ", Version X.X"; |
darienf | 3:36de8b9e4b1a | 51 | // |
darienf | 3:36de8b9e4b1a | 52 | // btn_OK |
darienf | 3:36de8b9e4b1a | 53 | // |
darienf | 3:36de8b9e4b1a | 54 | this.btn_OK.Location = new System.Drawing.Point(296, 272); |
darienf | 3:36de8b9e4b1a | 55 | this.btn_OK.Name = "btn_OK"; |
darienf | 3:36de8b9e4b1a | 56 | this.btn_OK.Size = new System.Drawing.Size(75, 23); |
darienf | 3:36de8b9e4b1a | 57 | this.btn_OK.TabIndex = 1; |
darienf | 3:36de8b9e4b1a | 58 | this.btn_OK.Text = "OK"; |
darienf | 3:36de8b9e4b1a | 59 | this.btn_OK.UseVisualStyleBackColor = true; |
darienf | 3:36de8b9e4b1a | 60 | this.btn_OK.Visible = false; |
darienf | 3:36de8b9e4b1a | 61 | this.btn_OK.Click += new System.EventHandler(this.btn_OK_Click); |
darienf | 3:36de8b9e4b1a | 62 | // |
darienf | 3:36de8b9e4b1a | 63 | // SplashScreen |
darienf | 3:36de8b9e4b1a | 64 | // |
darienf | 3:36de8b9e4b1a | 65 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 16F); |
darienf | 3:36de8b9e4b1a | 66 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
darienf | 3:36de8b9e4b1a | 67 | this.BackColor = System.Drawing.Color.White; |
darienf | 3:36de8b9e4b1a | 68 | this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; |
darienf | 3:36de8b9e4b1a | 69 | this.ClientSize = new System.Drawing.Size(400, 320); |
darienf | 3:36de8b9e4b1a | 70 | this.Controls.Add(this.btn_OK); |
darienf | 3:36de8b9e4b1a | 71 | this.Controls.Add(this.maximSplashScreen1); |
darienf | 3:36de8b9e4b1a | 72 | this.Font = new System.Drawing.Font("Arial Narrow", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
darienf | 3:36de8b9e4b1a | 73 | this.ForeColor = System.Drawing.Color.Black; |
darienf | 3:36de8b9e4b1a | 74 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; |
darienf | 3:36de8b9e4b1a | 75 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); |
darienf | 3:36de8b9e4b1a | 76 | this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); |
darienf | 3:36de8b9e4b1a | 77 | this.Name = "SplashScreen"; |
darienf | 3:36de8b9e4b1a | 78 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; |
darienf | 3:36de8b9e4b1a | 79 | this.Text = "SplashScreen"; |
darienf | 3:36de8b9e4b1a | 80 | this.Load += new System.EventHandler(this.SplashScreen_Load); |
darienf | 3:36de8b9e4b1a | 81 | this.ResumeLayout(false); |
darienf | 3:36de8b9e4b1a | 82 | |
darienf | 3:36de8b9e4b1a | 83 | } |
darienf | 3:36de8b9e4b1a | 84 | |
darienf | 3:36de8b9e4b1a | 85 | #endregion |
darienf | 3:36de8b9e4b1a | 86 | |
darienf | 3:36de8b9e4b1a | 87 | internal MaximStyle.MaximSplashScreen maximSplashScreen1; |
darienf | 3:36de8b9e4b1a | 88 | internal MaximStyle.MaximButton btn_OK; |
darienf | 3:36de8b9e4b1a | 89 | } |
darienf | 3:36de8b9e4b1a | 90 | } |