Files
KinginfoGateway/framework/Demo/ThingsGateway.Foundation.Demo.Rcl/Components/DebugPage/TcpServerPage.razor

38 lines
1.5 KiB
Plaintext
Raw Normal View History

2023-05-23 23:54:28 +08:00
@*
//------------------------------------------------------------------------------
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
// 此代码版权除特别声明外的代码归作者本人Diego所有
// 源代码使用协议遵循本仓库的开源协议及附加协议
2023-07-16 17:48:22 +08:00
// Gitee源代码仓库https://gitee.com/diego2098/ThingsGateway
2023-05-23 23:54:28 +08:00
// Github源代码仓库https://github.com/kimdiego2098/ThingsGateway
2023-07-16 17:48:22 +08:00
// 使用文档https://diego2098.gitee.io/thingsgateway-docs/
2023-05-23 23:54:28 +08:00
// QQ群605534569
//------------------------------------------------------------------------------
*@
2023-09-30 23:05:53 +08:00
@namespace ThingsGateway.Foundation.Demo
2023-05-23 23:54:28 +08:00
@using BlazorComponent;
@using Microsoft.AspNetCore.Components.Web;
@using System.IO.Ports;
@using System.Collections.Concurrent;
2023-10-10 20:02:15 +08:00
@using ThingsGateway.Foundation.Core;
@using Masa.Blazor
2023-09-30 23:05:53 +08:00
<MCard Elevation="1" Rounded="false" Class="pa-2" Style="width:100%">
<div class="mb-4">通道配置</div>
<MRow Justify="JustifyTypes.Start" Align="AlignTypes.Center">
<MTextField Class="ma-1" Style="max-width:100px" Label="IP地址" Dense Outlined HideDetails="@("auto")" @bind-Value=@ip />
<MTextField Class="ma-1" Style="max-width:100px" Label="端口" Dense Outlined HideDetails="@("auto")" @bind-Value=@port />
2023-08-07 15:09:53 +08:00
<MButton Class="ma-1" OnClick=@Connect Color="primary">
启动
</MButton>
2023-08-07 15:09:53 +08:00
<MButton Class="ma-1" OnClick=@DisConnect Color="red">
停止
</MButton>
2023-09-30 23:05:53 +08:00
</MRow>
</MCard>