using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; namespace butterflow_ui { /// A butterflowUI option. Contains layout information for use in butterflowUI. public class ButterflowOption : ContentControl { #region Properties /// Gets or sets the label value. /// The label value. public string LabelValue { get; set; } /// Gets or sets the description value. /// The description value. public string DescriptionValue { get; set; } #endregion #region Dependency Properties /// The label value property. public static DependencyProperty LabelValueProperty = DependencyProperty.Register("LabelValue", typeof(string), typeof(ButterflowOption)); /// The description value property. public static DependencyProperty DescriptionValueProperty = DependencyProperty.Register("DescriptionValue", typeof(string), typeof(ButterflowOption)); #endregion /// Default constructor. public ButterflowOption() { // } } }