21 lines
547 B
C#
21 lines
547 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace InfineonHMI;
|
|
|
|
/// <summary>
|
|
/// Interaktionslogik für UnitControl.xaml
|
|
/// </summary>
|
|
public partial class UnitDetailsControl : UserControl
|
|
{
|
|
public static readonly DependencyProperty UnitNameProperty = DependencyProperty.Register("UnitName", typeof(string), typeof(UnitDetailsControl));
|
|
public String UnitName
|
|
{
|
|
get { return (string)GetValue(UnitNameProperty); }
|
|
set { SetValue(UnitNameProperty, value); }
|
|
}
|
|
public UnitDetailsControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |