65dee8bf4c
-> aggiornamento automatico della lista "PartList"; -> verifica funzionamento ultima versione.
31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<UserControl x:Class="BoxV"
|
|
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:OmagVIEWPlus"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="200" d:DesignWidth="200">
|
|
<Grid>
|
|
<ToggleButton Grid.Row="1" Name="MyBox"
|
|
IsEnabled="{Binding IsAvailable}"
|
|
Visibility="{Binding VisibilityBtn}"
|
|
IsChecked="{Binding State_IsChecked}"
|
|
Background="{Binding BackGroundColor}"
|
|
ToolTip="{Binding InfoBox}"
|
|
Style="{StaticResource UnloadingArea_ToggleButton}">
|
|
<ToggleButton.Content>
|
|
<Grid>
|
|
<Image Source="{Binding ImagePath}"
|
|
Stretch="Uniform"
|
|
Visibility="{Binding Image_Visibility}"/>
|
|
<TextBlock Text="{Binding FillPercentage}"
|
|
VerticalAlignment="Center"
|
|
HorizontalAlignment="Center"
|
|
Visibility="{Binding Percentage_Visibility}"/>
|
|
</Grid>
|
|
</ToggleButton.Content>
|
|
</ToggleButton>
|
|
</Grid>
|
|
</UserControl>
|