コード例 #1
0
 public IDLClassSelector(UserActionInterface actionInterface)
 {
     _actionInterface = actionInterface;
     InitializeComponent();
     IDLVersions idlVersions = new IDLVersions();
     idlVersionComboBox.DataSource = idlVersions.getVersionList();
     idlVersionComboBox.DisplayMember = "Name";
     idlVersionComboBox.ValueMember = "Name";
 }
コード例 #2
0
        public IDLClassSelector(UserActionInterface actionInterface)
        {
            _actionInterface = actionInterface;
            InitializeComponent();
            IDLVersions idlVersions = new IDLVersions();

            idlVersionComboBox.DataSource    = idlVersions.getVersionList();
            idlVersionComboBox.DisplayMember = "Name";
            idlVersionComboBox.ValueMember   = "Name";

            idlMappingDetailComboBox.DataSource    = idlVersions.getMappingDetailList();
            idlMappingDetailComboBox.DisplayMember = "Name";
            idlMappingDetailComboBox.ValueMember   = "Name";
        }