33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
|
|
<Window
|
||
|
|
x:Class="IFCReader.MainWindow"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:local="clr-namespace:IFCReader"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
Title="属性读取"
|
||
|
|
Width="250"
|
||
|
|
Height="200"
|
||
|
|
mc:Ignorable="d">
|
||
|
|
<Grid>
|
||
|
|
<UniformGrid Margin="5" Columns="1">
|
||
|
|
<DockPanel Margin="5">
|
||
|
|
<TextBlock VerticalAlignment="Center" Text="文件路径:" />
|
||
|
|
<TextBox x:Name="IfcFilePath" VerticalContentAlignment="Center" />
|
||
|
|
</DockPanel>
|
||
|
|
<Button
|
||
|
|
Margin="5"
|
||
|
|
Click="OpenFile"
|
||
|
|
Content="打开IFC文件" />
|
||
|
|
<Button
|
||
|
|
Margin="5"
|
||
|
|
Click="WriteJosn"
|
||
|
|
Content="导出Json" />
|
||
|
|
<Button
|
||
|
|
Margin="5"
|
||
|
|
Click="WriteTxt"
|
||
|
|
Content="导出txt" />
|
||
|
|
</UniformGrid>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|