Skip to content

Commit

Permalink
Create ModelDropdown.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
N00MKRAD committed Sep 13, 2020
1 parent 5c56a74 commit bd730ed
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions Code/UI/Controls/ModelDropdown.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Cupscale.UI.Controls
{
class ModelDropdown : ComboBox
{



public ModelDropdown () // Constructor
{
// :thinking:
}

protected override void OnDropDown(EventArgs e)
{
// if (!IsRunning())
// return;
base.OnDropDown(e);
UIHelpers.FillModelComboBox(this, false);
}
}
}

0 comments on commit bd730ed

Please sign in to comment.