Tagged Questions
The columnheader tag has no wiki summary.
3
votes
2answers
2k views
How to set the DataContext on a DataGrid Column Header
In my Silverlight 3 user control I am showing a basic DataGrid control. I need to generate the columns programmatically as follows:
Style headerStyle = (Style)Resources["ColumnHeaderStyle"];
...
3
votes
2answers
2k views
C#/WPF: Toolkit DataGrid - Transpose rows and columns
I've a
List<DetailObject> someList;
which looks like this:
public class DetailObject
{
public string Titel { get; set; }
public int Value1 { get; set; }
...
2
votes
1answer
2k views
Column Header for a WPF TreeView
I am using the WPF TreeView to display some hierarchical information. Each item in the TreeView consists of several attributes, so I am using a Grid within my HierarchicalDataTemplate to display these ...
2
votes
3answers
8k views
WPF Datagrid binding custom column headers
I am trying to figure out how to bind a WPF DataGrid's column header and main data to a data source using an MVVM pattern. The result I'm looking for would look like this:
I've successfully styled ...
2
votes
1answer
878 views
Why wont my column sort in a winforms .NET datagrid?
I have a WinForms .NET datagrid whose data source is a List<cLineItem> called lines. cLineItem is very simple class with properties like units (int), description (string) and unit amount ...
1
vote
3answers
121 views
How to create a flat columnheader button in listview (Windows Forms C#)
How would it be possible to create a 'FlatStyle' button for the columnheader of a listview in C#?
I have researched this a little and I came across this code for VB:
...
1
vote
2answers
417 views
WPF data grid - Column Header not aligned with data rows
I am using Datagrid in WPF. This is a very simple and basic implementation. I not using any styles.
I created a simple datagrid :
<dg:DataGrid x:Name="dg" >
</dg:DataGrid>
...
1
vote
1answer
283 views
Can System.Windows.Forms.ColumnHeader use a different image then one from the main ImageList?
I have an ListView set up to sort, and I have that working well.
However, when the ListView is sorted, no indication is provided as to the current sort column and order.
I tried a solution setting ...
0
votes
2answers
41 views
Set GridViewColumnHeader style from inside a ListView style
In one of my projects I have inherited a ListView and overridden the style by setting a new control template. I have also overridden the column header style. So far I have found two ways to do this:
...
0
votes
0answers
67 views
Reordering SlickGrid Columns Resets Column Header HTML
I have a grid of data where we have added a filter icon to the header of each column after initializing the grid like so:
function selectHeaderIcon(searchActive){
if (searchActive) {
...
0
votes
1answer
121 views
Silverlight DataGrid ColumnHeader_Click() event?
I'm just wondering on how would I go about catching such an event? Currently there does not seems to be a way to do this.
What I am trying to achieve is a custom sorting technique for the column ...
0
votes
0answers
188 views
Datagrid column header click and drag-and-drop
I want to be able to run a command when a datagrid column header is clicked. The classic way is to set column header style with a button. But doing it so causes loosing ability to reorder columns.
...
0
votes
1answer
212 views
How to sort a GridView with a ColumnHeader click when AutoGenerateColumns=“true”
I have a gridview with AutoGenerateColumns="true" (in general I don't know what the columns will be). Is there any easy way to sort the grid by clicking on a column header? The only solutions I have ...
0
votes
0answers
80 views
Can't delete correct column using ColumnHeaderMouseClick and contextMenuStrip
I have a DataGridView and I want the user to be able to right click on a column header then an option to delete the column appears and when clicked it will delete the correct column.
Here is my code:
...
0
votes
0answers
62 views
Exception while calling the text property of a Listview ColumnHeader (Windows Mobile)
I am developing code for a translating dll that my coworkers will be using from now on.
I am using Visual Studio 2005 's C# to create the dll for Windows Mobile 5 + devices on Microsoft Compact ...
0
votes
0answers
242 views
How to add a button just to the relevant column headers in datagrid?
I'd like to add a button to the datagrid's column header:
<UserControl.Resources>
<Style TargetType="prim:DataGridColumnHeader" x:Key="DataGridColumnHeaderStyle">
<Setter ...
0
votes
1answer
764 views
is there built-in way to make DevExpress XtraGrid GridView column headers/captions diagonal to save horizontal space?
I have a whole bunch of very narrow columns in a DevExpress GridView and I want to save on column header width by making the caption text (which is too wide even at 3-4 letter abbreviations) slanted / ...
0
votes
1answer
232 views
How do I style a DataGridHeader based on information from the DataGridColumn?
I have a DataGrid, and in that grid, some of the columns are marked Read only:
<DataGrid AutoGenerateColumns="False">
<DataGrid.Columns>
<!-- this column is read only ...
0
votes
1answer
637 views
Put a “column header” over the ScrollViewer of a WPF ComboBox ControlTemplate
here is my sample project updated from this thread:
WPF: Refine the look of a grouped ComboBox vs. a grouped DataGrid -sample attached -
http://www.sendspace.com/file/ru8hju (VS2010 .Net 4.0 ...
0
votes
1answer
489 views
WPF Listview Columnheader Click Event
I have a ListView (GridView) in WPF and I'm trying to implement sorting according to http://msdn.microsoft.com/en-us/library/ms745786.aspx. In my case, the celltemplate for one of the columns contains ...
0
votes
4answers
312 views
WPF Toolkit Datagrid Headers and Empty Source
How could I make the Datagrid display the headers in case there's no row to display?
My Datagrid is "completely" read-only with:
"AutoGenerateColumns ="True"
"CanUserAddRows="False"
...
0
votes
1answer
183 views
Editable Column headers for WinForms DataGrid Control?
I'd like to display a DataGrid control where the column headers are editable by the user. Is this possible?
0
votes
2answers
693 views
How to create an ASP.NET Listview with draggable column widths?
In windows applications we can change the ListView's column width by just dragging the header of the column. How can I done that in a ASP.NET ListView?
0
votes
2answers
1k views
BackColor of ListView ColumnHeaders
Is there a way to set the BackColor of the ColumnHeaders of a ListView?