16 lines
400 B
C#
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();
|
|
}
|
|
}
|
|
} |