功能完善
This commit is contained in:
25
NeuWPF/NeoUI/Controls/Hyperlink.xaml.cs
Normal file
25
NeuWPF/NeoUI/Controls/Hyperlink.xaml.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System.Windows.Controls.Primitives;
|
||||
|
||||
namespace NeumUI.Controls;
|
||||
/// <summary>
|
||||
/// A hyperlink button.
|
||||
/// </summary>
|
||||
public class Hyperlink : ButtonBase
|
||||
{
|
||||
#region Properties
|
||||
public static readonly DependencyProperty UriProperty =
|
||||
DependencyProperty.Register(nameof(Uri), typeof(string), typeof(Hyperlink), new PropertyMetadata(string.Empty));
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the uri of hyperlinks.
|
||||
/// </summary>
|
||||
public string Uri { get => (string)GetValue(UriProperty);
|
||||
set => SetValue(UriProperty, value);
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region Constructors
|
||||
static Hyperlink()
|
||||
{ DefaultStyleKeyProperty.OverrideMetadata(typeof(Hyperlink), new FrameworkPropertyMetadata(typeof(Hyperlink))); }
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user