Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed MAX14720 MAX30205 USBDevice
DoubleBufferTableLayoutPanel.cs
00001 using System; 00002 using System.Collections.Generic; 00003 using System.ComponentModel; 00004 using System.Drawing; 00005 using System.Data; 00006 using System.Linq; 00007 using System.Text; 00008 using System.Windows.Forms; 00009 00010 namespace HealthSensorPlatform.CustomControls 00011 { 00012 public partial class DoubleBufferTableLayoutPanel : TableLayoutPanel 00013 { 00014 public DoubleBufferTableLayoutPanel() 00015 { 00016 InitializeComponent(); 00017 } 00018 00019 public DoubleBufferTableLayoutPanel(IContainer container) 00020 { 00021 container.Add(this); 00022 InitializeComponent(); 00023 } 00024 00025 /// <summary> 00026 /// Double buffer 00027 /// </summary> 00028 [Description("Double buffer")] 00029 [DefaultValue(true)] 00030 public bool dBuffer 00031 { 00032 get { return this.DoubleBuffered; } 00033 set { this.DoubleBuffered = value; } 00034 } 00035 } 00036 }
Generated on Thu Jul 28 2022 18:07:13 by
1.7.2