Dispenser/DispenserUI/Views/Controls/CameraParamsEditor.axaml

16 lines
734 B
Plaintext
Raw Permalink Normal View History

2024-08-16 07:20:09 +00:00
<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>