I am having a lot of "fun" trying to make my margins (and widths) in my XAML fit together with other margins in the same application and margins in other applications in the same "suite" of applications.
So I got the idea to define margins as staticresources:
<Thickness x:Key="MarginDetailTabPageContent">0</Thickness>
<Thickness x:Key="MarginLeftHeader">2,4,2,2</Thickness>
<Thickness x:Key="MarginAdditionalInfoOnTop">1,2,2,0</Thickness>
<Thickness x:Key="MarginSmallHeaderOnTop">1,2,2,0</Thickness>
<Thickness x:Key="MarginFieldWithAdditionalMarginOnTop">0,0,2,2</Thickness>
<System:Double x:Key="WidthSmallField">70</System:Double>
..and then I plan to use these staticresources everywhere.. labels, textblocks, textboxes, checkboxed .. on almost all controls in my application.
But before I make this rather time-consuming change, I would like your expert opinion on how this would affect performance.
Somehow, in my mind, I've decided that using the staticresource - writing <TextBlock Margin="{StaticResource=MarginLeftHeader}" ... />
instead of <TextBlock Margin="2,4,2,2" ... />
- everywhere costs at least a call to some function for each place it is used. It this right?
The overall question is: would the user be able to feel any change in performance (for the worse.. or for the better)?
A StaticResource will be resolved and assigned to the property during the loading of the XAML which occurs before the application is actually run. It will only be assigned once and any changes to resource dictionary ignored. So there is no significant difference in performance; lookup behavior for that resource is analogous to compile-time lookup.