Files

24 lines
1.3 KiB
Plaintext
Raw Permalink Normal View History

<UserControl x:Class="MainShell.ParaSetting.View.DeviceRunSettingView"
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">
<Border Background="{StaticResource BackgroundBrush}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="2,2,2,2">
<TabControl mw:TabControlAttach.FontSize="14">
<TabItem Header="{DynamicResource ProcessParameterSettings}">
<ContentControl mw:View.Model="{Binding ProcessParameterSettingViewModel}"/>
</TabItem>
<TabItem Header="{DynamicResource SpeedParameters}">
<ContentControl mw:View.Model="{Binding SpeedSettingViewModel}"/>
</TabItem>
<TabItem Header="{DynamicResource GlobalRunParameters}">
<ContentControl mw:View.Model="{Binding OtherProduceViewModel}"/>
</TabItem>
</TabControl>
</Border>
</UserControl>