32 lines
1.6 KiB
XML
32 lines
1.6 KiB
XML
<UserControl x:Class="Microsoft.VisualStudio.RazorExtension.DocumentInfo.RazorDocumentInfoWindowControl"
|
|
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"
|
|
Background="{DynamicResource VsBrush.Window}"
|
|
Foreground="{DynamicResource VsBrush.WindowText}"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="300"
|
|
Name="MyToolWindow">
|
|
<StackPanel HorizontalAlignment="Stretch">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*" />
|
|
<ColumnDefinition Width="7*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Column="0" Grid.Row="0" Content="Project"/>
|
|
<Label Grid.Column="1" Grid.Row="0" Content="{Binding Project.Name}"/>
|
|
<Label Grid.Column="0" Grid.Row="1" Content="Is Supported"/>
|
|
<Label Grid.Column="1" Grid.Row="1" Content="{Binding IsSupportedDocument}"/>
|
|
<Label Grid.Column="0" Grid.Row="2" Content="Configuration"/>
|
|
<Label Grid.Column="1" Grid.Row="2" Content="{Binding Configuration}"/>
|
|
</Grid>
|
|
</StackPanel>
|
|
</UserControl>
|