14 lines
290 B
C#
14 lines
290 B
C#
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using XP.Camera.Calibration.ViewModels;
|
|
|
|
namespace XP.Camera.Calibration.Controls;
|
|
|
|
public partial class ChessboardCalibrationControl : UserControl
|
|
{
|
|
public ChessboardCalibrationControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|