a502322188
손상된 .git 히스토리(missing tree)로 재초기화 후 작업트리 전체 커밋. .claude/ 만 제외(로컬 에이전트 설정). 구 저장소 백업(.git_corrupt_backup/) 포함. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
38 lines
2.0 KiB
XML
38 lines
2.0 KiB
XML
<UserControl x:Class="AirPlanner.ControlView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
FontFamily="Malgun Gothic, Segoe UI" Background="#FFFFFF">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="210"/>
|
|
<ColumnDefinition Width="160"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- 카테고리 -->
|
|
<Border Grid.Column="0" Background="#F6F7F9" BorderBrush="{StaticResource CardBorder}" BorderThickness="0,0,1,0">
|
|
<StackPanel Margin="0,28,0,0">
|
|
<Button Style="{StaticResource ZoneBtn}" Content="시스템 에어컨"/>
|
|
<Button Style="{StaticResource ZoneBtn}" Content="환기" Foreground="{StaticResource Ink}" FontWeight="Bold"/>
|
|
<Button Style="{StaticResource ZoneBtn}" Content="대기전력콘센트"/>
|
|
<Button Style="{StaticResource ZoneBtn}" Content="엘리베이터 호출"/>
|
|
<Button Style="{StaticResource ZoneBtn}" Content="쿡탑"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<!-- 구역 (클릭 → 우측 전환) -->
|
|
<Border Grid.Column="1" Background="#F6F7F9" BorderBrush="{StaticResource CardBorder}" BorderThickness="0,0,1,0">
|
|
<StackPanel Margin="0,28,0,0">
|
|
<Button x:Name="zAll" Style="{StaticResource ZoneBtn}" Content="전체" Click="Zone_Click" Tag="전체"/>
|
|
<Button x:Name="zLiving" Style="{StaticResource ZoneBtn}" Content="거실" Click="Zone_Click" Tag="거실"/>
|
|
<Button x:Name="zR1" Style="{StaticResource ZoneBtn}" Content="침실1" Click="Zone_Click" Tag="침실1"/>
|
|
<Button x:Name="zR2" Style="{StaticResource ZoneBtn}" Content="침실2" Click="Zone_Click" Tag="침실2"/>
|
|
<Button x:Name="zR3" Style="{StaticResource ZoneBtn}" Content="침실3" Click="Zone_Click" Tag="침실3"/>
|
|
</StackPanel>
|
|
</Border>
|
|
|
|
<!-- 구역별 콘텐츠 -->
|
|
<ContentControl x:Name="ZoneContent" Grid.Column="2"/>
|
|
</Grid>
|
|
</UserControl>
|