16 lines
855 B
Plaintext
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> |