mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 14:02:19 +00:00
23 lines
617 B
C#
23 lines
617 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 VMOptionsQemu : SubPropertyPageBase
|
|
{
|
|
public VMOptionsQemu(CustomPropertyPage owner) : base(owner)
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.comboNetworkCard.Items.AddRange(EnumValue.GetEnumValues(typeof(VMQemuNetworkCard)));
|
|
this.comboAudioCard.Items.AddRange(EnumValue.GetEnumValues(typeof(VMQemuAudioCard)));
|
|
}
|
|
}
|
|
}
|