Commit 632097d
committed
fix: Update StackPanel Spacing styles in WpfUiCustom.xaml theme
## Problem
The WpfUiCustom.xaml theme file contained 3 StackPanel styles that used
Property="Spacing", which doesn't exist in WPF StackPanel:
- StandardSpacing (Spacing=12)
- CompactSpacing (Spacing=8)
- WideSpacing (Spacing=16)
These styles were causing XAML build errors at lines 68, 72, and 76.
## Solution
1. Added xmlns:helpers namespace to ResourceDictionary with assembly reference
2. Updated all 3 style definitions to use helpers:StackPanelHelper.Spacing
attached property instead of Property="Spacing"
## Files Changed
- Themes/WpfUiCustom.xaml
## Result
All StackPanel spacing styles now use the WPF-compatible StackPanelHelper
attached property, maintaining the same spacing values and functionality.1 parent dcdf1a5 commit 632097d
1 file changed
Lines changed: 6 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
4 | 5 | | |
5 | 6 | | |
6 | 7 | | |
| |||
63 | 64 | | |
64 | 65 | | |
65 | 66 | | |
66 | | - | |
| 67 | + | |
67 | 68 | | |
68 | | - | |
| 69 | + | |
69 | 70 | | |
70 | 71 | | |
71 | 72 | | |
72 | | - | |
| 73 | + | |
73 | 74 | | |
74 | 75 | | |
75 | 76 | | |
76 | | - | |
| 77 | + | |
77 | 78 | | |
78 | 79 | | |
79 | 80 | | |
| |||
0 commit comments