|
|
@ -2,7 +2,13 @@ |
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
|
|
x:Class="SunlightAggregationTerminal.QueryDetail" |
|
|
x:Class="SunlightAggregationTerminal.QueryDetail" |
|
|
|
|
|
xmlns:converters="clr-namespace:SunlightAggregationTerminal.Converters" |
|
|
Title="细节" > |
|
|
Title="细节" > |
|
|
|
|
|
<ContentPage.Resources> |
|
|
|
|
|
<ResourceDictionary> |
|
|
|
|
|
<converters:StringToBoolConverter x:Key="StringToBoolConverter" /> |
|
|
|
|
|
</ResourceDictionary> |
|
|
|
|
|
</ContentPage.Resources> |
|
|
<Grid RowDefinitions="Auto, *" > |
|
|
<Grid RowDefinitions="Auto, *" > |
|
|
<Grid BackgroundColor="#CCCCCC" Padding="10" Grid.Row="0" Grid.Column="0"> |
|
|
<Grid BackgroundColor="#CCCCCC" Padding="10" Grid.Row="0" Grid.Column="0"> |
|
|
<VerticalStackLayout> |
|
|
<VerticalStackLayout> |
|
|
@ -54,6 +60,8 @@ |
|
|
FontSize="22" TextColor="Black"/> |
|
|
FontSize="22" TextColor="Black"/> |
|
|
<Label Text="{Binding StepNumber}" FontAttributes="Bold" |
|
|
<Label Text="{Binding StepNumber}" FontAttributes="Bold" |
|
|
FontSize="22" TextColor="Black"/> |
|
|
FontSize="22" TextColor="Black"/> |
|
|
|
|
|
<Label Text="{Binding Tank}" FontAttributes="Bold" |
|
|
|
|
|
FontSize="22" TextColor="Black"/> |
|
|
</HorizontalStackLayout> |
|
|
</HorizontalStackLayout> |
|
|
<HorizontalStackLayout> |
|
|
<HorizontalStackLayout> |
|
|
<Label Text="呼叫时间: " FontAttributes="Bold" |
|
|
<Label Text="呼叫时间: " FontAttributes="Bold" |
|
|
@ -73,6 +81,12 @@ |
|
|
<Label Text="{Binding UsageTime}" FontAttributes="Bold" |
|
|
<Label Text="{Binding UsageTime}" FontAttributes="Bold" |
|
|
FontSize="22" TextColor="Black"/> |
|
|
FontSize="22" TextColor="Black"/> |
|
|
</HorizontalStackLayout> |
|
|
</HorizontalStackLayout> |
|
|
|
|
|
<HorizontalStackLayout> |
|
|
|
|
|
<Label Text="溶解流程: " FontAttributes="Bold" FontSize="22" TextColor="Black" |
|
|
|
|
|
IsVisible="{Binding Path=Process, Converter={StaticResource StringToBoolConverter}}"/> |
|
|
|
|
|
<Label Text="{Binding Process}" FontAttributes="Bold" FontSize="22" TextColor="Black" |
|
|
|
|
|
IsVisible="{Binding Path=Process, Converter={StaticResource StringToBoolConverter}}"/> |
|
|
|
|
|
</HorizontalStackLayout> |
|
|
<BoxView HeightRequest="3" Color="#CCCCCC" /> |
|
|
<BoxView HeightRequest="3" Color="#CCCCCC" /> |
|
|
<HorizontalStackLayout> |
|
|
<HorizontalStackLayout> |
|
|
<Label Text="{Binding ProductName}" FontAttributes="Bold" |
|
|
<Label Text="{Binding ProductName}" FontAttributes="Bold" |
|
|
|