40 lines
2.0 KiB
Plaintext
40 lines
2.0 KiB
Plaintext
|
|
<UserControl x:Class="MainShell.ParaSetting.View.DeviceFoundationView"
|
||
|
|
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.ParaSetting.View"
|
||
|
|
xmlns:mw="http://www.maxwell-gp.com/"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
||
|
|
<UserControl.Resources>
|
||
|
|
<Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
|
||
|
|
<Setter Property="HorizontalContentAlignment" Value="Right"/>
|
||
|
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
||
|
|
<Setter Property="HorizontalAlignment" Value="Right"/>
|
||
|
|
<Setter Property="Margin" Value="5"/>
|
||
|
|
<Setter Property="Height" Value="35"/>
|
||
|
|
</Style>
|
||
|
|
</UserControl.Resources>
|
||
|
|
|
||
|
|
<Border Background="{StaticResource BackgroundBrush}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="2,2,2,2">
|
||
|
|
<TabControl mw:TabControlAttach.FontSize="14">
|
||
|
|
<TabItem Header="{DynamicResource MenuMaterialBoxPara}">
|
||
|
|
|
||
|
|
</TabItem>
|
||
|
|
<TabItem Header="{DynamicResource MenuAxisParameters}">
|
||
|
|
<ContentControl mw:View.Model="{Binding AxisParameterSettingViewModel}" />
|
||
|
|
</TabItem>
|
||
|
|
<TabItem Header="{DynamicResource FileSavePara}" >
|
||
|
|
<ContentControl mw:View.Model="{Binding SaveSettingViewModel}"/>
|
||
|
|
</TabItem>
|
||
|
|
<TabItem Header="{DynamicResource CameraPara}">
|
||
|
|
<ContentControl mw:View.Model="{Binding CameraParameterViewModel}"/>
|
||
|
|
</TabItem>
|
||
|
|
<TabItem Header="{DynamicResource OtherPara}">
|
||
|
|
<ContentControl/>
|
||
|
|
</TabItem>
|
||
|
|
</TabControl>
|
||
|
|
</Border>
|
||
|
|
</UserControl>
|