32 lines
654 B
C#
32 lines
654 B
C#
//
|
|
// Copyright © 2006-2010, Intel Corporation. All rights reserved.
|
|
//
|
|
//File: AMT_RadioButton.cs
|
|
//
|
|
// Contents: Defintion of logic of a radio button (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_RadioButton : RadioButton
|
|
{
|
|
public AMT_RadioButton()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public AMT_RadioButton(IContainer container)
|
|
{
|
|
container.Add(this);
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|