Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 22nd, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. WPF Dynamic resource example
  2. <Button>
  3.   <Button.Background>
  4.     <SolidColorBrush Color="{StaticResource {x:Static SystemColors.DesktopColorKey}}" />
  5.   </Button.Background>
  6.   Hello
  7. </Button>
  8.        
  9. <Button>
  10.       <Button.Background>
  11.         <SolidColorBrush Color="{DynamicResource {x:Static SystemColors.DesktopColorKey}}" />
  12.       </Button.Background>
  13.       Hello
  14.     </Button>