| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <UserControl x:Class="SummaryModule.Controls.BaseTemperature"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:SummaryModule.Controls"
- mc:Ignorable="d"
- x:Name="This"
- d:DesignHeight="450" d:DesignWidth="800">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="auto"/>
- <RowDefinition Height="0"/>
- <RowDefinition />
- </Grid.RowDefinitions>
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center">Zone</TextBlock>
- <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Center">Actual (℃)</TextBlock>
- </Grid>
- <ItemsControl Grid.Row="2" ItemsSource="{Binding ElementName=This, Path=TempCollection.Values}">
- <ItemsControl.ItemTemplate>
- <DataTemplate>
- <Grid Height="26" Margin="0,6">
- <Grid.ColumnDefinitions>
- <ColumnDefinition/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Border Grid.Column="0" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Text="{Binding Name}"/>
- </Border>
- <Border Grid.Column="2" Background="White" CornerRadius="4">
- <TextBlock VerticalAlignment="Center" HorizontalAlignment="Center" Text="{Binding Temp, StringFormat=0.0}"/>
- </Border>
- </Grid>
- </DataTemplate>
- </ItemsControl.ItemTemplate>
- <ItemsControl.ItemsPanel>
- <ItemsPanelTemplate>
- <StackPanel />
- </ItemsPanelTemplate>
- </ItemsControl.ItemsPanel>
- </ItemsControl>
- </Grid>
- </UserControl>
|