16 lines
734 B
XML
16 lines
734 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:components="clr-namespace:DispenserUI.ViewModels.Components"
|
|
x:DataType="components:CameraParamsVM"
|
|
x:Class="DispenserUI.Views.Controls.CameraParamsEditor">
|
|
<UserControl.Styles>
|
|
<Style Selector="Slider /template/ Thumb">
|
|
<Setter Property="Width" Value="14" />
|
|
<Setter Property="Height" Value="14" />
|
|
<Setter Property="Cursor" Value="Hand" />
|
|
</Style>
|
|
</UserControl.Styles>
|
|
<ScrollViewer>
|
|
<StackPanel x:Name="CameraParamsPanel" DataContext="{Binding Params}" />
|
|
</ScrollViewer>
|
|
</UserControl> |