fa737c7c80
- aggiornata icona vista tool - gestita visualizzazione strati dopo calcolo slice - uniformata textbox assi macchina in simulazione
23 lines
928 B
XML
23 lines
928 B
XML
<UserControl x:Class="MachineViewPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
VerticalContentAlignment="Top">
|
|
<ComboBox SelectedIndex="{Binding ghSelMachView}"
|
|
Height="40"
|
|
Width="40"
|
|
Style="{StaticResource SelViewSlider_ComboBox}">
|
|
<ComboBoxItem>
|
|
<Image Source="\Resources\SimulationPanel\ToolMode.png"
|
|
Style="{StaticResource ComboBox.Image}"/>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem>
|
|
<Image Source="\Resources\SimulationPanel\HeadMode.png"
|
|
Style="{StaticResource ComboBox.Image}"/>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem>
|
|
<Image Source="\Resources\SimulationPanel\MachMode.png"
|
|
Style="{StaticResource ComboBox.Image}"/>
|
|
</ComboBoxItem>
|
|
</ComboBox>
|
|
</UserControl>
|