Initial Push
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System.Windows;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace UniperHMI
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaktionslogik für StringControlButton.xaml
|
||||
/// </summary>
|
||||
public partial class SMUControlButton : Button
|
||||
{
|
||||
public static readonly DependencyProperty SMUNameProperty = DependencyProperty.Register("SMUName", typeof(string), typeof(SMUControlButton));
|
||||
public String SMUName
|
||||
{
|
||||
get { return (string)GetValue(SMUNameProperty); }
|
||||
set { SetValue(SMUNameProperty, value); }
|
||||
}
|
||||
|
||||
public SMUControlButton()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user