添加项目文件。

This commit is contained in:
GG Z
2026-02-23 14:58:05 +08:00
parent ce96926220
commit 771d780d6c
342 changed files with 33470 additions and 0 deletions

32
IFCReader/MainWindow.xaml Normal file
View File

@@ -0,0 +1,32 @@
<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>