This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<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>

View File

@@ -0,0 +1,15 @@
using DTS.Common.Interface;
namespace DTS.Common.Property
{
/// <summary>
/// Interaction logic for GraphPropertyView.xaml
/// </summary>
public partial class PropertyView : IPropertyView
{
public PropertyView()
{
InitializeComponent();
}
}
}