借助网络配置,控制Modbus工具的日志显示,避免卡死界面
智能大石头 authored at 2021-12-11 22:09:19
353.00 B
XCoder
using Avalonia.Controls;
using XCoderAv.ViewModels;

namespace XCoderAv.Views;

/// <summary>正则表达式工具窗口</summary>
public partial class RegexWindow : Window
{
    /// <summary>实例化正则表达式工具窗口</summary>
    public RegexWindow()
    {
        InitializeComponent();
        DataContext = new RegexViewModel();
    }
}