49 lines
2.2 KiB
XML
49 lines
2.2 KiB
XML
<UserControl x:Class="MainShell.DeviceMaintance.View.NeedleBaseView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:MainShell.DeviceMaintance.View"
|
|
xmlns:mw="http://www.maxwell-gp.com/"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<ListBox Grid.Row="0" Background="#D7DDE4"
|
|
Style="{StaticResource NavigationListBoxStyle}"
|
|
ScrollViewer.VerticalScrollBarVisibility="Disabled"
|
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled"
|
|
ItemsSource="{Binding NavigationItems}"
|
|
SelectedItem="{Binding SelectedItem, Mode=TwoWay}">
|
|
<ListBox.ItemsPanel>
|
|
<ItemsPanelTemplate >
|
|
<StackPanel Orientation="Horizontal"/>
|
|
</ItemsPanelTemplate>
|
|
</ListBox.ItemsPanel>
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<TextBlock Text="{Binding}"
|
|
FontWeight="Bold"
|
|
Foreground="#505050"
|
|
FontSize="14" />
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
<Grid Grid.Row="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<ContentControl Margin="2" Content="{Binding CameraAxisViewModel}"/>
|
|
<Border BorderBrush="Gray" BorderThickness="1" Margin="5,2" Grid.Column="1">
|
|
<ContentControl Margin="2"
|
|
mw:View.Model="{Binding CurrentScreen}"/>
|
|
</Border>
|
|
</Grid>
|
|
</Grid>
|
|
</UserControl>
|