Some checks failed
CI / build-and-test (push) Failing after 31s
- Theme split: Theme.Dark.xaml + Theme.Light.xaml + ThemeManager - New shell: 32px header (mark + wordmark + 3 icons), 40px transport strip, conditional meeting bar, slide-over settings drawer - Removed: 72px rail, 380px permanent settings panel, 6-column footer, custom chromeless title bar buttons - Ctrl+T toggles theme; follows Windows app-mode by default - Shape doc at docs/shapes/2026-05-13-teamsiso-v2-studio-terminal.md
23 lines
1.3 KiB
XML
23 lines
1.3 KiB
XML
<Application x:Class="TeamsISO.App.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<!--
|
|
Theme color brushes — DARK by default. ThemeManager.Apply()
|
|
swaps this entry to Theme.Light.xaml at runtime; the brushes
|
|
are referenced via DynamicResource from WildDragonTheme.xaml
|
|
so the visual tree re-resolves without an app restart.
|
|
The DEFAULT here is dark so the app boots into a
|
|
deterministic state before ThemeManager runs on startup;
|
|
if the operator's preference is Light or system app-mode
|
|
is Light, the dictionary swap happens before MainWindow
|
|
is shown so there's no visible flash.
|
|
-->
|
|
<ResourceDictionary Source="/Themes/Theme.Dark.xaml"/>
|
|
<ResourceDictionary Source="/Themes/WildDragonTheme.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|