중간
This commit is contained in:
@@ -100,24 +100,60 @@
|
||||
Text="준비됨" FontSize="12"
|
||||
HorizontalAlignment="Center" Margin="0,5"/>
|
||||
|
||||
<!-- 추출 버튼 -->
|
||||
<Button x:Name="btnExtract" Grid.Row="2"
|
||||
Content="🚀 추출 시작" Width="200" Height="45"
|
||||
Margin="0,10,0,5" HorizontalAlignment="Center"
|
||||
Click="BtnExtract_Click" FontSize="16" FontWeight="Bold"
|
||||
Background="#A3BE8C" Foreground="White"
|
||||
BorderThickness="0">
|
||||
<Button.Style>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Background" Value="#A3BE8C"/>
|
||||
<Style.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter Property="Background" Value="#8FAE74"/>
|
||||
</Trigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
<!-- 추출 버튼들 -->
|
||||
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,10,0,5">
|
||||
<Button x:Name="btnExtract"
|
||||
Content="🚀 DWG 추출" Width="150" Height="45"
|
||||
Margin="5,0"
|
||||
Click="BtnExtract_Click" FontSize="14" FontWeight="Bold"
|
||||
Background="#A3BE8C" Foreground="White"
|
||||
BorderThickness="0">
|
||||
<Button.Style>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Background" Value="#A3BE8C"/>
|
||||
<Style.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter Property="Background" Value="#8FAE74"/>
|
||||
</Trigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
<Button x:Name="btnPdfExtract"
|
||||
Content="📄 PDF 추출" Width="150" Height="45"
|
||||
Margin="5,0"
|
||||
Click="BtnPdfExtract_Click" FontSize="14" FontWeight="Bold"
|
||||
Background="#D08770" Foreground="White"
|
||||
BorderThickness="0">
|
||||
<Button.Style>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Background" Value="#D08770"/>
|
||||
<Style.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter Property="Background" Value="#C5774F"/>
|
||||
</Trigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
<Button x:Name="btnMerge"
|
||||
Content="🔗 합치기" Width="150" Height="45"
|
||||
Margin="5,0"
|
||||
Click="BtnMerge_Click" FontSize="14" FontWeight="Bold"
|
||||
Background="#B48EAD" Foreground="White"
|
||||
BorderThickness="0">
|
||||
<Button.Style>
|
||||
<Style TargetType="Button">
|
||||
<Setter Property="Background" Value="#B48EAD"/>
|
||||
<Style.Triggers>
|
||||
<Trigger Property="IsMouseOver" Value="True">
|
||||
<Setter Property="Background" Value="#A07A95"/>
|
||||
</Trigger>
|
||||
</Style.Triggers>
|
||||
</Style>
|
||||
</Button.Style>
|
||||
</Button>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</GroupBox>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user