32 lines
635 B
C#
32 lines
635 B
C#
//
|
|
// Copyright © 2006-2010, Intel Corporation. All rights reserved.
|
|
//
|
|
//File: AMT_CheckBox.cs
|
|
//
|
|
// Contents: Defintion of logic of a checkbox (GUI componet)
|
|
//
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AMT_SW_GUI
|
|
{
|
|
public partial class AMT_CheckBox : CheckBox
|
|
{
|
|
public AMT_CheckBox()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public AMT_CheckBox(IContainer container)
|
|
{
|
|
container.Add(this);
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|