Posts

Showing posts with the label ControlTemplate

WPF: How to Style Vertical GridSplitter

Image
< Window  x : Class = "VerticalGridSplitterExample"          xmlns = "http://schemas.microsoft.com/winfx/2006/xaml/presentation"          xmlns : x = "http://schemas.microsoft.com/winfx/2006/xaml"  Title = "VerticalGridSplitter Example"          Height = "300"  Width = "300" >      < Window.Resources >                   < Style  x : Key = "GridSplitterVerticalGripStyle"  TargetType ="{ x : Type  GridSplitter } " >              < Setter  Property = "VerticalAlignment"  Value = "Stretch"  />              < Setter  Property = "FocusVisualStyle"  Value ="{ x :...