df402b5c8a
- estes o blocco interfaccia durante calcoli - migliorata gestione slider
35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<UserControl x:Class="LayerIndexSliderV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:Icarus="clr-namespace:Icarus"
|
|
IsEnabled="{Binding LayerIndex_IsEnabled}"
|
|
Visibility="{Binding LayerIndex_Visibility}">
|
|
<Grid VerticalAlignment="Center">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="20"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Text="View Slider"
|
|
HorizontalAlignment="Center"/>
|
|
<ComboBox Grid.Row="1"
|
|
ItemsSource="{Binding ViewSliderList}"
|
|
SelectedIndex="{Binding ghSelViewSlider}"
|
|
Width="100"/>
|
|
<Icarus:ShowValueSlider Grid.Row="3"
|
|
Orientation="Vertical"
|
|
Height="400"
|
|
Value="{Binding nLayerIndex}"
|
|
Minimum="{Binding nLayerIndex_Minimum}"
|
|
Maximum="{Binding nLayerIndex_Maximum}"
|
|
ShowValue="{Binding ghShowValue}"
|
|
ShowMaximum="{Binding ghShowMaximum}"
|
|
SmallChange="1"
|
|
HorizontalAlignment="Right"
|
|
Style="{StaticResource LayerIndex_Slider}"/>
|
|
</Grid>
|
|
|
|
</UserControl>
|
|
|