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