37 lines
1.6 KiB
XML
37 lines
1.6 KiB
XML
<HeaderedContentControl x:Class="Aiwaz.Editor.Controls.PropertyGrid"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:pg="clr-namespace:Aiwaz.Editor.Controls">
|
|
|
|
<HeaderedContentControl.Header>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="50"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Text="Search:" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
<TextBox x:Name="searchTextBox" Grid.Column="1"/>
|
|
</Grid>
|
|
</HeaderedContentControl.Header>
|
|
<Border BorderThickness="1" BorderBrush="#FF828790">
|
|
<Grid>
|
|
<Grid.Background>
|
|
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
|
|
<GradientStop Color="LightGray" Offset="0.0" />
|
|
<GradientStop Color="White" Offset="1.0" />
|
|
</LinearGradientBrush>
|
|
</Grid.Background>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<ScrollViewer x:Name="propertyGridScrollBar" Grid.Row="0" CanContentScroll="False" VerticalScrollBarVisibility="Visible">
|
|
<ScrollViewer.Content>
|
|
<StackPanel x:Name="PropertyPanel"/> <!--PropertyItems go in here-->
|
|
</ScrollViewer.Content>
|
|
</ScrollViewer>
|
|
<TextBlock x:Name="descriptionTextBlock" Grid.Row="1" TextWrapping="Wrap"/>
|
|
</Grid>
|
|
</Border>
|
|
</HeaderedContentControl>
|