20240301_JSEQ_upperpc/JiangsuEarthquake_test/JiangsuEarthquake/Views/SystemEnvironDataView.xaml.cs
XuMin 748090f317 修改部分:
1 地震仪告警记录中故障次数隐藏;电力载波机和光电交换机的供电状态隐藏;
2 除漏水和保护板事件的数据按照浮点数解析,别的按照整数解析;
3 解决TCP Server和Client存在的问题,包括无法监测到客户端连接,无法监测到服务端断开等问题;
2024-08-13 14:35:33 +08:00

42 lines
935 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using UserControl = System.Windows.Controls.UserControl;
namespace JiangsuEarthquake.Views
{
/// <summary>
/// SystemEnvironDataView.xaml 的交互逻辑
/// </summary>
public partial class SystemEnvironDataView : UserControl
{
public SystemEnvironDataView()
{
InitializeComponent();
}
private void RefreshFileBtn_Click(object sender, RoutedEventArgs e)
{
}
private void DownloadFileBtn_Click(object sender, RoutedEventArgs e)
{
}
}
}