18 lines
461 B
C#
18 lines
461 B
C#
using System.Windows;
|
|
|
|
namespace XP.Hardware.MotionControl.Views
|
|
{
|
|
/// <summary>
|
|
/// 运动控制调试窗口(Jog 点动)| Motion Control Debug Window (Jog)
|
|
/// </summary>
|
|
public partial class MotionDebugWindow : Window
|
|
{
|
|
public MotionDebugWindow()
|
|
{
|
|
InitializeComponent();
|
|
if (Application.Current?.MainWindow != null)
|
|
Icon = Application.Current.MainWindow.Icon;
|
|
}
|
|
}
|
|
}
|