Files
infineon_cs_hmi/uniper_hmi/UniperHMI/OwnControls/Views/SMUControlButton.xaml.cs
2026-02-11 08:38:36 +01:00

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();
}
}
}