repo time

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Revision:
20:6d2af70c92ab
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/HspGuiSourceV301/HSPGui/CustomControls/DoubleBufferTableLayoutPanel.cs	Tue Apr 06 06:41:40 2021 +0000
@@ -0,0 +1,36 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Drawing;
+using System.Data;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+
+namespace HealthSensorPlatform.CustomControls
+{
+    public partial class DoubleBufferTableLayoutPanel : TableLayoutPanel 
+    {
+        public DoubleBufferTableLayoutPanel()
+        {
+            InitializeComponent();
+        }
+
+        public DoubleBufferTableLayoutPanel(IContainer container)
+        {
+            container.Add(this);
+            InitializeComponent();
+        }
+
+        /// <summary>
+        /// Double buffer
+        /// </summary>
+        [Description("Double buffer")]
+        [DefaultValue(true)]
+        public bool dBuffer
+        {
+            get { return this.DoubleBuffered; }
+            set { this.DoubleBuffered = value; }
+        }
+    }
+}