mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-09-07 04:16:23 +00:00
added Revit 2022 SDK minus except *rvt and *rfa
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user