gridsplitter

WPF: Do I really need a DataGrid?

I need not: sorting filtering grouping column headers row headers I need: Just 7 buttons(each a weekday) over the data matrix data Scrollable data matrix editable row AND columns resizeable I decided to choose this: A Scrollviewer with a Grid with several Gridsplitter and a Itemscontrol. Implement IEditableObject into my ViewMo...

Gridsplitter ignores minwidth of columns

Hi. I want to have a simple 3 column grid with resizeable columns and a MinWidth of 80. The code looks like this: <Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="120" MinWidth="80"/> <ColumnDefinition Width="Auto"/> <ColumnDefinition Width="*" MinWidth="80"/> <ColumnDefinition Width="Auto"/> <ColumnDefini...

GridSplitter with button for pinning like behavior

I'm looking to extend the GridSplitter in some way to add a button which when click expands or collapses the control to one of the specified sides of the splitter. I've found a solution that works for Silverlight 4 but I need this to work for standard WPF in .NET 3.5 which means that the GridSplitter doesn't implement the Visual State M...

Dragging GridSplitter causes cell to grow when using Auto height/width

I am using a GridSplitter to resize a cell in a grid however its behaviour is not what I am expecting and I cannot find a solution. It is a grid of three rows, the first has a row definition set to Auto and contains some elements. The second row has some data in it and has a row definition of * to fill the remaining space. The last row i...

GridSplitter with min constraints

I whant a Grid layout with two rows and splitter between them. Rows should has a minimum height of 80 pixels. Next code works great: <Grid> <Grid.RowDefinitions> <RowDefinition Height="*" MinHeight="80" /> <RowDefinition Height="5" /> <RowDefinition Height="*" MinHeight="80" /> </Grid.RowDefinitions> ...