| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | <UserControl x:Class="FurnaceUI.Views.Operations.TemperatureDetailAllZoneView"             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:FurnaceUI.Views.Operations" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:cal="http://www.caliburn.org"             mc:Ignorable="d"              Height="250" Width="700" FontFamily="Segoe">    <Grid>        <Grid.RowDefinitions>            <RowDefinition Height="50"/>            <RowDefinition Height="120"/>            <RowDefinition Height="80"/>        </Grid.RowDefinitions>        <DockPanel Grid.Row="1" Grid.Column="0">            <Canvas>                <TextBlock Text="Value:" FontSize="30" Canvas.Left="180" Canvas.Top="28"/>                <TextBox Text="{Binding TempSetValue,UpdateSourceTrigger=PropertyChanged}" Width="200" Height="42" FontSize="25" Canvas.Left="280" Canvas.Top="26" Tag="Number"/>            </Canvas>        </DockPanel>        <DockPanel Grid.Row="2" Grid.Column="0">            <Canvas>                <Button Width="130" Height="45" Content="Close" Canvas.Left="540" Canvas.Top="20" Style="{StaticResource CommandButton}">                    <i:Interaction.Triggers>                        <i:EventTrigger EventName="Click">                            <cal:ActionMessage MethodName="CloseCmd">                            </cal:ActionMessage>                        </i:EventTrigger>                    </i:Interaction.Triggers>                </Button>                <Button Width="130" Height="45" Content="Save" Canvas.Left="390" Canvas.Top="20" Style="{StaticResource CommandButton}" IsEnabled="{Binding IsEnable}">                    <i:Interaction.Triggers>                        <i:EventTrigger EventName="Click">                            <cal:ActionMessage MethodName="SaveCmd">                            </cal:ActionMessage>                        </i:EventTrigger>                    </i:Interaction.Triggers>                </Button>            </Canvas>        </DockPanel>    </Grid></UserControl>
 |