借助网络配置,控制Modbus工具的日志显示,避免卡死界面
智能大石头 authored at 2021-12-11 22:09:19
5.18 KiB
XCoder
<Window x:Class="CrazyCoder.Views.ApiDiscoverWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d"
        Title="API 服务发现" Height="600" Width="800" WindowStartupLocation="CenterScreen">
    <Window.Resources>
        <Style x:Key="GroupBorder" TargetType="Border">
            <Setter Property="BorderBrush" Value="#D0D0D0"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="Margin" Value="0,0,0,6"/>
        </Style>
        <Style x:Key="SectionTitle" TargetType="TextBlock">
            <Setter Property="FontWeight" Value="Bold"/>
            <Setter Property="Margin" Value="4,3"/>
            <Setter Property="FontSize" Value="13"/>
        </Style>
        <Style x:Key="ConfigLabel" TargetType="TextBlock">
            <Setter Property="VerticalAlignment" Value="Center"/>
            <Setter Property="Margin" Value="4,2"/>
        </Style>
        <Style x:Key="ActionButton" TargetType="Button">
            <Setter Property="Height" Value="32"/>
            <Setter Property="Margin" Value="2"/>
            <Setter Property="Padding" Value="16,0"/>
        </Style>
        <Style x:Key="LogTextBox" TargetType="TextBox">
            <Setter Property="FontFamily" Value="Consolas"/>
            <Setter Property="FontSize" Value="12"/>
            <Setter Property="IsReadOnly" Value="True"/>
            <Setter Property="VerticalScrollBarVisibility" Value="Auto"/>
            <Setter Property="HorizontalScrollBarVisibility" Value="Auto"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="BorderBrush" Value="#D0D0D0"/>
            <Setter Property="TextWrapping" Value="Wrap"/>
        </Style>
    </Window.Resources>

    <Grid Margin="8">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
            <RowDefinition Height="Auto"/>
        </Grid.RowDefinitions>

        <!-- 扫描配置 -->
        <Border Grid.Row="0" Style="{StaticResource GroupBorder}">
            <StackPanel>
                <TextBlock Text="API 服务发现" Style="{StaticResource SectionTitle}"/>
                <Grid Margin="4,0,4,4">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="Auto"/>
                        <ColumnDefinition Width="100"/>
                        <ColumnDefinition Width="Auto"/>
                        <ColumnDefinition Width="Auto"/>
                    </Grid.ColumnDefinitions>
                    <TextBlock Grid.Column="0" Text="端口" VerticalAlignment="Center" Margin="4,2"/>
                    <TextBox Grid.Column="1" Text="{Binding Port, UpdateSourceTrigger=PropertyChanged}" Margin="2" Height="28" VerticalContentAlignment="Center"/>
                    <Button Grid.Column="2" Content="扫描" Command="{Binding ScanCommand}"
                            Style="{StaticResource ActionButton}" Width="100" Background="#2196F3" Foreground="White"/>
                    <Button Grid.Column="3" Content="清空列表" Command="{Binding ClearServicesCommand}"
                            Style="{StaticResource ActionButton}" Width="80"/>
                </Grid>
            </StackPanel>
        </Border>

        <!-- 服务列表 -->
        <Border Grid.Row="1" Style="{StaticResource GroupBorder}">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>
                <TextBlock Text="发现的服务" Style="{StaticResource SectionTitle}"/>
                <ListView Grid.Row="1" ItemsSource="{Binding Services}" Margin="2">
                    <ListView.View>
                        <GridView>
                            <GridViewColumn Header="名称" Width="120" DisplayMemberBinding="{Binding Name}"/>
                            <GridViewColumn Header="IP" Width="120" DisplayMemberBinding="{Binding RemoteIP}"/>
                            <GridViewColumn Header="端口" Width="80" DisplayMemberBinding="{Binding Port}"/>
                            <GridViewColumn Header="ID" Width="80" DisplayMemberBinding="{Binding Id}"/>
                            <GridViewColumn Header="版本" Width="100" DisplayMemberBinding="{Binding Version}"/>
                        </GridView>
                    </ListView.View>
                </ListView>
            </Grid>
        </Border>

        <!-- 日志 -->
        <Border Grid.Row="2" Style="{StaticResource GroupBorder}" MaxHeight="150">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>
                <TextBlock Text="日志" Style="{StaticResource SectionTitle}"/>
                <TextBox Grid.Row="1" Text="{Binding Log, Mode=OneWay}" Style="{StaticResource LogTextBox}" Margin="2"/>
            </Grid>
        </Border>
    </Grid>
</Window>