Files
modernkeepass/ModernKeePass/Views/UserControls/SetCredentialsUserControl.xaml.cs

27 lines
824 B
C#
Raw Permalink Normal View History

using Windows.UI.Xaml;
// The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236
namespace ModernKeePass.Views.UserControls
{
public sealed partial class SetCredentialsUserControl
{
2020-04-21 11:26:02 +02:00
public string ButtonLabel
{
get { return (string)GetValue(ButtonLabelProperty); }
set { SetValue(ButtonLabelProperty, value); }
}
public static readonly DependencyProperty ButtonLabelProperty =
DependencyProperty.Register(
nameof(ButtonLabel),
typeof(string),
typeof(SetCredentialsUserControl),
2020-04-21 11:26:02 +02:00
new PropertyMetadata("OK", (o, args) => { }));
public SetCredentialsUserControl()
{
InitializeComponent();
}
}
}