Cosmos/source2/VSIP/Cosmos.VS.Package/DebugOptionsQemu.cs
kudzu_cp 920c341c66
2009-05-28 12:59:21 +00:00

23 lines
539 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.Build.Common;
namespace Cosmos.VS.Package
{
public partial class DebugOptionsQemu : SubPropertyPageBase
{
public DebugOptionsQemu(CustomPropertyPage owner) : base(owner)
{
InitializeComponent();
this.comboCommunication.Items.AddRange(EnumValue.GetEnumValues(typeof(DebugQemuCommunication)));
}
}
}