added Revit 2020 SDK files

This commit is contained in:
Jeremy Tammik
2019-09-11 14:43:53 +02:00
parent fbb29172ed
commit 8b8832b7be
2956 changed files with 938523 additions and 0 deletions
@@ -0,0 +1,24 @@
<UserControl x:Class="SectionPropertiesExplorer.WallDescriptionControl"
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"
mc:Ignorable="d"
d:DesignHeight="400" d:DesignWidth="690">
<DockPanel LastChildFill="True">
<StackPanel Orientation="Vertical" DockPanel.Dock="Top" Margin="0 10 10 10">
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top" Margin="10 0 0 0">
<StackPanel Orientation="Horizontal">
<Label Name="familyNameLabel" Content="Family name:" Height="26" Width="80"/>
<Label Name="familyName" Content="Unknown" Height="26" Width="250"/>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="10 0 0 0">
<Label Name="typeNameLabel" Content="Type name:" Height="26" Width="80"/>
<Label Name="typeName" Content="Unknown" Height="26" Width="250"/>
</StackPanel>
</StackPanel>
<Canvas Name="wallViewer" Height="auto" MinHeight="356" MinWidth="670" Margin="10 0 0 0">
</Canvas>
</StackPanel>
</DockPanel>
</UserControl>