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

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.62 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. How to change maximize button color/texture
  2. <Window x:Class="WpfApplication1.MainWindow"
  3.         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.         WindowStyle="None"
  6.         ResizeMode="NoResize"
  7.         BorderBrush="Blue"
  8.         BorderThickness="5">
  9.     <StackPanel Orientation="Horizontal"
  10.                 VerticalAlignment="Top"
  11.                 HorizontalAlignment="Right"
  12.                 Height="20" >
  13.         <Button Content="Minimize" />
  14.         <Button Content="Restore" />
  15.         <Button Content="Close" />
  16.     </StackPanel>
  17. </Window>