18 lines
668 B
C#
18 lines
668 B
C#
namespace XP.Hardware.MotionControl.Views
|
|
{
|
|
/// <summary>
|
|
/// 运动控制操作面板视图 | Motion Control Operation Panel View
|
|
/// 宽度 350px 的 UserControl,包含安全门状态区、直线轴区、旋转轴区、
|
|
/// 几何信息区、主操作按钮区和可折叠调试区
|
|
/// Width 350px UserControl containing safety door status, linear axes, rotary axes,
|
|
/// geometry info, main operation buttons and collapsible debug area
|
|
/// </summary>
|
|
public partial class MotionControlView : System.Windows.Controls.UserControl
|
|
{
|
|
public MotionControlView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|