借助网络配置,控制Modbus工具的日志显示,避免卡死界面
智能大石头 authored at 2021-12-11 22:09:19
3.93 KiB
XCoder
<Window xmlns="https://github.com/avaloniaui"
        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" d:DesignWidth="800" d:DesignHeight="650"
        x:Class="XCoderAv.Views.BackupWindow"
        Title="手机备份" Width="800" Height="650"
        WindowStartupLocation="CenterOwner">
    <Window.Styles>
        <Style Selector="TextBox.ConfigTextBox">
            <Setter Property="Margin" Value="2"/>
            <Setter Property="Height" Value="26"/>
            <Setter Property="VerticalContentAlignment" Value="Center"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="BorderBrush" Value="#D0D0D0"/>
        </Style>
        <Style Selector="Button.ActionButton">
            <Setter Property="Height" Value="30"/>
            <Setter Property="Margin" Value="2"/>
        </Style>
        <Style Selector="Border.GroupBorder">
            <Setter Property="BorderBrush" Value="#D0D0D0"/>
            <Setter Property="BorderThickness" Value="1"/>
            <Setter Property="Margin" Value="0,0,0,6"/>
        </Style>
    </Window.Styles>

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

        <!-- 目录配置 -->
        <Border Grid.Row="0" Classes="GroupBorder">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                    <RowDefinition Height="Auto"/>
                </Grid.RowDefinitions>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto"/>
                    <ColumnDefinition Width="*"/>
                </Grid.ColumnDefinitions>

                <TextBlock Text="目标目录" VerticalAlignment="Center" Margin="4,2"/>
                <TextBox Grid.Column="1" Text="{Binding DestDir}" Classes="ConfigTextBox"/>

                <TextBlock Grid.Row="1" Text="源目录1" VerticalAlignment="Center" Margin="4,2"/>
                <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding SrcDir1}" Classes="ConfigTextBox"/>

                <TextBlock Grid.Row="2" Text="源目录2" VerticalAlignment="Center" Margin="4,2"/>
                <TextBox Grid.Row="2" Grid.Column="1" Text="{Binding SrcDir2}" Classes="ConfigTextBox"/>

                <TextBlock Grid.Row="3" Text="源目录3" VerticalAlignment="Center" Margin="4,2"/>
                <TextBox Grid.Row="3" Grid.Column="1" Text="{Binding SrcDir3}" Classes="ConfigTextBox"/>

                <TextBlock Grid.Row="4" Text="源目录4" VerticalAlignment="Center" Margin="4,2"/>
                <TextBox Grid.Row="4" Grid.Column="1" Text="{Binding SrcDir4}" Classes="ConfigTextBox"/>

                <TextBlock Grid.Row="5" Text="源目录5" VerticalAlignment="Center" Margin="4,2"/>
                <TextBox Grid.Row="5" Grid.Column="1" Text="{Binding SrcDir5}" Classes="ConfigTextBox"/>

                <CheckBox Grid.Row="6" Content="允许删除(移动文件)" IsChecked="{Binding AllowDelete}" Margin="4,2"/>
                <Button Grid.Row="6" Grid.Column="1" Content="开始备份" Command="{Binding StartBackupCommand}" Classes="ActionButton" Width="100" HorizontalAlignment="Left"/>
            </Grid>
        </Border>

        <!-- 日志 -->
        <TextBox Grid.Row="2" Text="{Binding Log}" AcceptsReturn="True" AcceptsTab="True"
                 FontFamily="Consolas" FontSize="12" Margin="0,4"
                 BorderThickness="1" BorderBrush="#D0D0D0"/>
    </Grid>
</Window>