<UserControl x:Class="OpenTapEditor.StepSettingView"
|
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:OpenTapEditor"
|
mc:Ignorable="d"
|
xmlns:pu="https://opensource.panuon.com/wpf-ui"
|
d:DesignHeight="450" d:DesignWidth="800">
|
<UserControl.Resources>
|
<ResourceDictionary>
|
<ResourceDictionary.MergedDictionaries>
|
<ResourceDictionary Source="/UILib;component/Styles.xaml"/>
|
</ResourceDictionary.MergedDictionaries>
|
<Style TargetType="TextBox">
|
<Setter Property="VerticalContentAlignment" Value="Center"/>
|
</Style>
|
</ResourceDictionary>
|
</UserControl.Resources>
|
|
<Border Grid.Column="0" Background="White"
|
BorderBrush="{StaticResource BorderDarkBrush}" BorderThickness="1">
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="26"/>
|
<RowDefinition Height="*"/>
|
</Grid.RowDefinitions>
|
|
<!-- 面板头部 -->
|
<Border Grid.Row="0" Background="#E8E8E8"
|
BorderBrush="{StaticResource BorderBrush}" BorderThickness="0,0,0,1">
|
<Grid Margin="4,0">
|
<TextBlock Text="{DynamicResource 单步设置}" FontWeight="Bold" FontSize="11"
|
VerticalAlignment="Center"/>
|
</Grid>
|
</Border>
|
|
<ScrollViewer Grid.Row="1" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" Style="{StaticResource DefaultScrollViewer}">
|
<Grid x:Name="view">
|
<!--<TreeView Grid.Row="1" Grid.Column="1" ItemsSource="{Binding List}" x:Name="propertyTreeView">
|
<TreeView.ItemTemplate>
|
<HierarchicalDataTemplate ItemsSource="{Binding Children}">
|
<TextBlock Text="{Binding Title}"/>
|
</HierarchicalDataTemplate>
|
</TreeView.ItemTemplate>
|
</TreeView>-->
|
</Grid>
|
|
</ScrollViewer>
|
</Grid>
|
</Border>
|
|
|
</UserControl>
|