You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
944 B
37 lines
944 B
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; |
|
|
|
namespace ArdupilotMega.Controls |
|
{ |
|
public partial class ValuesControl : UserControl, IDynamicParameterControl |
|
{ |
|
#region Properties |
|
|
|
public string LabelText { get { return myLabel1.Text; } set { myLabel1.Text = value; } } |
|
public string DescriptionText { get { return label1.Text; } set { label1.Text = value; } } |
|
public ComboBox ComboBoxControl { get { return comboBox1; } set { comboBox1 = value; } } |
|
|
|
#region Interface Properties |
|
|
|
public string Value { get { return comboBox1.SelectedValue.ToString(); } set { comboBox1.SelectedValue = value; } } |
|
|
|
#endregion |
|
|
|
#endregion |
|
|
|
#region Constructor |
|
|
|
public ValuesControl() |
|
{ |
|
InitializeComponent(); |
|
} |
|
|
|
#endregion |
|
} |
|
}
|
|
|