LogsPage.xaml 481 字节
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             x:Class="IndustrialControl.Pages.LogsPage"
             Title="实时日志">
  <Grid RowDefinitions="Auto,*" Padding="12">
    <Label Text="当日日志(自动刷新)" FontAttributes="Bold"/>
    <ScrollView Grid.Row="1">
      <Label Text="{Binding LogText}" FontFamily="monospace"/>
    </ScrollView>
  </Grid>
</ContentPage>