butterflow-ui/butterflow-ui/ButterflowOption.cs

42 lines
1.3 KiB
C#
Raw Permalink Normal View History

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
{
/// <summary> A butterflowUI option. Contains layout information for use in butterflowUI. </summary>
public class ButterflowOption : ContentControl
{
#region Properties
2018-06-25 03:44:45 -05:00
/// <summary> Gets or sets the label value. </summary>
/// <value> The label value. </value>
public string LabelValue { get; set; }
2018-06-25 03:44:45 -05:00
/// <summary> Gets or sets the description value. </summary>
/// <value> The description value. </value>
2018-06-24 23:26:28 -05:00
public string DescriptionValue { get; set; }
#endregion
#region Dependency Properties
2018-06-25 03:44:45 -05:00
/// <summary> The label value property. </summary>
public static DependencyProperty LabelValueProperty = DependencyProperty.Register("LabelValue", typeof(string), typeof(ButterflowOption));
2018-06-25 03:44:45 -05:00
/// <summary> The description value property. </summary>
2018-06-24 23:26:28 -05:00
public static DependencyProperty DescriptionValueProperty = DependencyProperty.Register("DescriptionValue", typeof(string), typeof(ButterflowOption));
#endregion
2018-06-25 03:44:45 -05:00
/// <summary> Default constructor. </summary>
public ButterflowOption()
{
//
}
}
}