Cosmos/source2/VSIP/Cosmos.VS.Package/DebugOptionsQemu.cs
DanStory_cp 3c724726fc Incremental check-in.
Added BuildOptionsPropertyPage(.cs) class and file.
Added ConfiguationBase(.cs) class and file.
Added DebugOptionsPropertyPage(.cs) class and file.
Added DebugOptionsQemu(.cs) class and file.
Added required guids of new property pages to Guids(.cs).
Added TitleDivision(.cs) class and file.
2009-05-23 12:21:32 +00:00

22 lines
493 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Cosmos.Builder.Common;
namespace Cosmos.VS.Package
{
public partial class DebugOptionsQemu : UserControl
{
public DebugOptionsQemu()
{
InitializeComponent();
this.comboCommunication.Items.AddRange(EnumValue.GetEnumValues(typeof(DebugQemuCommunication)));
}
}
}