27 lines
518 B
C#

//
// Copyright © 2006-2010, Intel Corporation. All rights reserved.
//
// File: TopPanel.cs
//
// Contents: Definition of the top panel of the application main form
//
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Text;
using System.Windows.Forms;
namespace AMT_SW_GUI.Forms
{
public partial class TopPanel : UserControl
{
public TopPanel()
{
InitializeComponent();
}
}
}