Files
XplorePlane/XplorePlane/Views/Cnc/CncPageView.xaml.cs
T
2026-04-13 14:36:18 +08:00

16 lines
400 B
C#

using System.Windows.Controls;
namespace XplorePlane.Views.Cnc
{
/// <summary>
/// CNC 编辑器主页面视图(MVVM 模式,逻辑在 ViewModel 中)
/// CNC editor main page view (MVVM pattern, logic in ViewModel)
/// </summary>
public partial class CncPageView : UserControl
{
public CncPageView()
{
InitializeComponent();
}
}
}