mirror of
https://github.com/jeremytammik/RevitSdkSamples.git
synced 2026-08-13 00:13:18 +00:00
25 lines
1.4 KiB
XML
25 lines
1.4 KiB
XML
<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>
|