mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 10:31:26 -07:00
67 lines
2.1 KiB
C#
67 lines
2.1 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;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Markup;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Bloxstrap.UI.Elements.Controls
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for OptionControl.xaml
|
|
/// </summary
|
|
[ContentProperty(nameof(InnerContent))]
|
|
public partial class OptionControl : UserControl
|
|
{
|
|
public static readonly DependencyProperty HeaderProperty =
|
|
DependencyProperty.Register(nameof(Header), typeof(string), typeof(OptionControl));
|
|
|
|
public static readonly DependencyProperty DescriptionProperty =
|
|
DependencyProperty.Register(nameof(Description), typeof(string), typeof(OptionControl));
|
|
|
|
public static readonly DependencyProperty HelpLinkProperty =
|
|
DependencyProperty.Register(nameof(HelpLink), typeof(string), typeof(OptionControl));
|
|
|
|
public static readonly DependencyProperty InnerContentProperty =
|
|
DependencyProperty.Register(nameof(InnerContent), typeof(object), typeof(OptionControl));
|
|
|
|
public string Header
|
|
{
|
|
get { return (string)GetValue(HeaderProperty); }
|
|
set { SetValue(HeaderProperty, value); }
|
|
}
|
|
|
|
public string Description
|
|
{
|
|
get { return (string)GetValue(DescriptionProperty); }
|
|
set { SetValue(DescriptionProperty, value); }
|
|
}
|
|
|
|
public string HelpLink
|
|
{
|
|
get { return (string)GetValue(HelpLinkProperty); }
|
|
set { SetValue(HelpLinkProperty, value); }
|
|
}
|
|
|
|
public object InnerContent
|
|
{
|
|
get { return GetValue(InnerContentProperty); }
|
|
set { SetValue(InnerContentProperty, value); }
|
|
}
|
|
|
|
public OptionControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|