Posts

Showing posts with the label Horizontal GridSplitter

WPF: How to Style Horizontal GridSplitter

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