18 lines
420 B
C#
18 lines
420 B
C#
using System.Windows.Controls;
|
|
using RIZO_Application.Infrastructure.CustomAttribute;
|
|
|
|
namespace RIZO_Application.Modules.ModuleName.Views
|
|
{
|
|
[AutoRegisterView(ViewName = "ScanControl")]
|
|
/// <summary>
|
|
/// ScanControl.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class ScanControl : UserControl
|
|
{
|
|
public ScanControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|