24 lines
643 B
C#
24 lines
643 B
C#
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();
|
|
}
|
|
}
|
|
}
|