65dee8bf4c
-> aggiornamento automatico della lista "PartList"; -> verifica funzionamento ultima versione.
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<UserControl x:Class="SceneHostV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtUILib="clr-namespace:EgtUILib;assembly=EgtUILib">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="35"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<DockPanel HorizontalAlignment="Right" Grid.Row="1">
|
|
<TextBlock Text="Select manual parts for unloading" VerticalAlignment="Center"
|
|
Visibility="{Binding VisibilityManulaPartCommand}"
|
|
Margin="0,0,50,0"/>
|
|
<Button Content="Confirm" Width="100"
|
|
Visibility="{Binding VisibilityManulaPartCommand}"
|
|
Command="{Binding ConfirmManualPart_Command}"/>
|
|
<ToggleButton Content="LayOut" Width="100"
|
|
IsChecked="{Binding IsLayoutCheched}"/>
|
|
</DockPanel>
|
|
<WindowsFormsHost Grid.Row="0">
|
|
<EgtUILib:Scene x:Name="MainScene"/>
|
|
</WindowsFormsHost>
|
|
</Grid>
|
|
|
|
|
|
</UserControl>
|