Darien Figueroa / Mbed 2 deprecated repo3

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers DoubleBufferTableLayoutPanel.cs Source File

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 }