1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-09-09 03:00:39 -05:00
butterflow-ui/butterflow-ui/ButterflowOption.cs
Jordan Wages 2e73a77538 Advanced options and documentation
Added a lot of new advanced options and documented a lot of functions and members.
2018-07-03 18:59:28 -05:00

41 lines
1.3 KiB
C#

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
/// <summary> Gets or sets the label value. </summary>
/// <value> The label value. </value>
public string LabelValue { get; set; }
/// <summary> Gets or sets the description value. </summary>
/// <value> The description value. </value>
public string DescriptionValue { get; set; }
#endregion
#region Dependency Properties
/// <summary> The label value property. </summary>
public static DependencyProperty LabelValueProperty = DependencyProperty.Register("LabelValue", typeof(string), typeof(ButterflowOption));
/// <summary> The description value property. </summary>
public static DependencyProperty DescriptionValueProperty = DependencyProperty.Register("DescriptionValue", typeof(string), typeof(ButterflowOption));
#endregion
/// <summary> Default constructor. </summary>
public ButterflowOption()
{
//
}
}
}