Files
DP44/Common/DTS.Common.Property/.svn/pristine/cf/cfc3f2c27b3a280bff99d8ef663522ec46e0536c.svn-base
2026-04-17 14:55:32 -04:00

16 lines
855 B
Plaintext

<base:BaseView x:Class="DTS.Common.Property.PropertyView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:toolkit="http://schemas.xceed.com/wpf/xaml/toolkit"
xmlns:base="clr-namespace:DTS.Common.Base;assembly=DTS.Common">
<Grid DataContext="{Binding}">
<StackPanel Orientation="Vertical">
<ScrollViewer VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Hidden" >
<toolkit:PropertyGrid VerticalAlignment="Stretch" MinWidth="250" SelectedObject="{Binding Properties}" />
</ScrollViewer>
<StackPanel Orientation="Horizontal">
<Button ></Button>
</StackPanel>
</StackPanel>
</Grid>
</base:BaseView>