도면에서 표 추출
This commit is contained in:
@@ -210,6 +210,40 @@
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
<Button x:Name="btnVisualizeCells"
|
||||
Content="🎨 셀 시각화" Width="150" Height="45"
|
||||
Margin="5,0"
|
||||
Click="BtnVisualizeCells_Click" FontSize="14" FontWeight="Bold"
|
||||
Background="#9B59B6" Foreground="White"
|
||||
BorderThickness="0">
|
||||
<Button.Style>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Background" Value="#9B59B6"/>
|
||||
<Style.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter Property="Background" Value="#8E44AD"/>
|
||||
</Trigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
<Button x:Name="btnTestIntersection"
|
||||
Content="🔬 교차점 테스트" Width="150" Height="45"
|
||||
Margin="5,0"
|
||||
Click="BtnTestIntersection_Click" FontSize="14" FontWeight="Bold"
|
||||
Background="#E74C3C" Foreground="White"
|
||||
BorderThickness="0">
|
||||
<Button.Style>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Background" Value="#E74C3C"/>
|
||||
<Style.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter Property="Background" Value="#C0392B"/>
|
||||
</Trigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
@@ -234,6 +268,8 @@
|
||||
<TextBlock x:Name="txtStatusBar" Text="DWG 정보 추출기 v1.0 - 준비됨"/>
|
||||
<Separator Margin="10,0"/>
|
||||
<TextBlock x:Name="txtFileCount" Text="파일: 0개"/>
|
||||
<Separator Margin="10,0"/>
|
||||
<TextBlock x:Name="txtBuildTime" Text="빌드: 로딩중..." FontSize="11" Foreground="LightGray"/>
|
||||
</StackPanel>
|
||||
</StatusBarItem>
|
||||
<StatusBarItem HorizontalAlignment="Right">
|
||||
|
||||
Reference in New Issue
Block a user