Tagged Questions

GridViewColumn is a control in WPF which separates the Grid and ListView controls with columns.

learn more… | top users | synonyms

22
votes
5answers
35k views

How to autosize and right-align GridViewColumn data in WPF?

How can I: right-align the text in the ID column make each of the columns auto size according to the text length of the cell with the longest visible data? Here is the code: <ListView ...
11
votes
5answers
8k views

WPF: How to hide GridViewColumn using XAML?

I have the following object in App.xaml <Application.Resources> <ResourceDictionary> <GridView x:Key="myGridView" x:Shared="false"> ...
6
votes
1answer
1k views

GridViewColumn content and VerticalAlignment

i want to display some information in a listview using the GridView. i have several GridViewColumns and everything works fine. However, want the GridViewColumns content to have a VerticalAlignment ...
3
votes
3answers
2k views

WPF: GridViewColumn resize event

I'm using ListView with GridView. Is there GridViewColumn resize event?
2
votes
2answers
320 views

Disable GridViewColumn Resize

Is there any way by which I can disable GridViewColumn resize in WPF? I don't want to style the control.
2
votes
1answer
252 views

Where can i find the default WPF Control templates?

As per this MSDN link, There is no way to replace only part of the visual tree of a control; to change the visual tree of a control you must set the Template property of the control to ...
2
votes
1answer
399 views

Access GridViewColumnHeader object from GridViewColumn

is it possible in wpf to access the header of a gridviewcolumn as gridviewcolumnheader? I have an object: GridViewColumn column; But the "Header" property just returns a string (header text) not ...
2
votes
1answer
2k views

Programmatically replace GridView cell contents on load

I am working on a program in WPF for the first time. I have a ListView in GridView mode displaying data from a bound dataset (which is grabbed from a database). In my database, "date of birth" is not ...
2
votes
1answer
2k views

WPF: How to freeze a ListView header row so that it won't scroll off the screen

I am new to WPF development, I have a ListView and I want to freeze the header row so that it won't scroll off the screen when the user scrolls the list. The xaml code, I have inherited, looks ...
2
votes
1answer
868 views

TreeListView with Columns generated and populated by ObservableCollection

Does anyone known (or even has an example) of a WPF based TreeListView that can generate its colums by databinding to the ObservableCollection of its tree items? For example the databound model is a ...
1
vote
1answer
79 views

Getting rid of the white line at the end of GridViewColumnHeader in xaml

I've had several problems with the GridViewColumnHeaders so far. Originally I had a issue with there being a tiny sliver of white between each of the column headers. Even if we set the borderthickness ...
1
vote
3answers
133 views

Problem with getting a cell value OnRowCommand in Gridview

protected void GridView1_OnRowCommand(object sender, GridViewCommandEventArgs e) { int index = Convert.ToInt32(e.CommandArgument); GridViewRow row = GridView1.Rows[index]; ...
1
vote
2answers
423 views

WPF - How to have certain ListView items span columns?

I have a set of data that I'd like to present via a WPF ListView in this way: Column1 Column2 Column3 --GroupName1-- Item1 part2 part3 Item2 part2 part3 --GroupName2-- Item3 ...
1
vote
1answer
91 views

Access control binding information from GridViewColumn

I have code like this <GridViewColumn Header="Status" Width="75" DisplayMemberBinding="{Binding Path=TimesheetStatus}"/> <GridViewColumn Header="Reviewed?" Width="70"> ...
1
vote
1answer
345 views

How to get x:Name value runtime

I got: <ListView.View GridViewColumnHeader.Click="ColumnHeaderClick"> <GridView> <GridViewColumn x:Name="Col" Header="Item"> private void ...
1
vote
3answers
1k views

In wpf treeview, how to redraw the nodes with their previous expanded values(using MVVM)

I am developing a wpf desktop app with strict MVVM pattern. Current my app is doing following things: Showing a Treeview with HierarchicalDataTemplate. User can expand or collapse Nodes. ...
1
vote
3answers
5k views

C#/WPF: Make a GridViewColumn Visible=false?

Does anyone know if there is an option to hide a GridViewColumn somehow like this: <ListView.View> <GridView> <GridViewColumn Header="Test" IsVisible="{Binding ...
1
vote
5answers
6k views

asp.Net GridView bind custom object with nested List

I have a List of custom object, which consist of a custom list. class person{ string name; int age; List<friend> allMyFriends; } class friend{ string name; string address; } ...
1
vote
1answer
3k views

WPF: Problem with binding values to ComboBox inside GridViewColumn

My Views dataContext is bounded to a presentationModel with two observableCollections Members. In the View I have one listView which ItemSource is bound to is the first observableCollection. In one of ...
0
votes
0answers
9 views

Setting CellTemplate in CodeBehind

I have a ListView that is being created in code as number of columns and it's data is not known. I have the following to create the grid columns private GridView CreateGridViewColumns(DataTable ...
0
votes
0answers
53 views

Binding doesnt work for GridViewColumn Width property

I set an one way binding to Width property of GridViewColumn.At 1st time it gets value from binding and sets it to Width property.When source is changed it gets value from binding, but it doesnt set ...
0
votes
1answer
106 views

Get GridViewColumn from control inside DataTemplate

Example: <ListView Name="lvAnyList" ItemsSource="{Binding}"> <ListView.View> <GridView> <GridViewColumn Header="xx" DisplayMemberBinding="{Binding XX}" ...
0
votes
0answers
56 views

Binding Header of GridViewColumn to ViewModel property and trigger changes

I want to change the Header of a GridViewColumn dynamically. I have a bool Property in the ViewModel that indicates which Text to show. So the normal approach I think would be to use a datatrigger: ...
0
votes
1answer
68 views

How can I change the fontsize of a GridviewColumnHeader?

I included everything below since it's not that much. I wasn't sure if something I put elsewhere was causing my setter to not work properly. <ListView x:Name="lvReports" ...
0
votes
2answers
54 views

Displaying items from a list onto the column in gridview

Im trying to display the name and path of a file in a listbox. For example, the name should come under Header FileName and path under FilePath. I do not want to bind to any xmls, as i have a code to ...
0
votes
2answers
511 views

GridViewColumn CellTemplate Code Behind

I have a listView that I construct at run-time, i.e. the columns are not known at compile-time. I would like to apply a DataTemplate to the cells such that the TextAlignment property is ...
0
votes
0answers
140 views

XAML dynamic GridViewColumn resizing

I have a XAML GridView that starts out as a good size, but if the user resizes the window, then the ratio of all of the gridviewcolums is not ideal. I currently have ~4/5 different gridview columns, ...
0
votes
0answers
219 views

Change GridViewColumn Width using DataTrigger

I want to resize a column in my gridview when I detect that a scroll bar will become visible (or else it will overlap my rightmost column). Debugging, I can see that my trigger is returning ...
0
votes
1answer
191 views

Edit the code of a GridView column asp.net

I've been looking for a way to control the text that appears in a particular column of a GridView. For example consider a database with two tables Student and Class. I want to add a column to the ...
0
votes
0answers
258 views

For each row created of gridview, add manipulated data into another gridview using code

I have three tables booking (booking_id, order_id ....) order (order_id, items_ids ...) and items (id, name ,category) sqldatasource_order selects a combination of booking & order gridview1 ...
0
votes
1answer
90 views

Is there a way to set the width of a GridViewColumn to Auto?

Somewhere in code I have to set the width of a GridViewColumn to 0, and in another place I want to set it to "Auto" just like in the xaml, instead of reinventing what the xaml is doing when using ...
0
votes
1answer
391 views

How to hide a GridViewColumn as if it's collapsed at runtime in WPF?

Basically I have some CheckBox controls I want to use to show or hide certain GridViewColumns at runtime. But I failed to find a sort of IsVisible property that I can set to false. Or even a ...
0
votes
2answers
348 views

GridViewColumn Command in HeaderTemplate

I have a GridView with GridViewColumn, the header uses a template with a textblox to show the column name. I want a command attached to this column, basically when the user clicks the column, a ...
0
votes
1answer
460 views

How to bind boolean to GridViewColumn checkboxes (have code but doesn't work)?

I am trying to bind a bool value to checkboxes in a GridViewColumn, but it doesn't work. I even tried just returning false, but the checkboxes still look enabled. It only works if I type "False" into ...
0
votes
1answer
400 views

How to make a GridViewColumn readonly/disabled?

I have a reference to a GridViewColumn in my xaml code as RuntimeColumn but I am not able to disable it or set it to readonly programmatically. I will need to do this at runtime without databinding. ...
0
votes
1answer
31 views

GridViewColumn with no cells?

Is it possible to have 3 GridViewColumn but only 2 CellTemplate ? I want the first cell to "occupy" the 2 left columns ? Is it possible ?
0
votes
0answers
231 views

How to freeze gridview header and first two columns so that ,it should have both vertical and horizontal scroll

I have fixed these thing using CSS that works fine in IE but does not work in Firefox. If any one has any ideas on how to fix this please reply.
0
votes
1answer
382 views

Content alignment for Gridviewcolumn in the listview

Please see the picture below Following is the code for this :: <Grid> <ListView Style="{StaticResource listViewStyle}" Name="transactionListView" ...
0
votes
1answer
313 views

How to use ButtonFields in Dynamic GridViews

I'm having trouble concerning using dynamic web controls inside a dynamically created Gridview. I need to create the Gridview in the code behind because I'm trying to create a plugin architecture for ...
0
votes
1answer
34 views

Binding a list to an asp.net gridview

I am binding a list to an asp.net gridview control which displays different profiles(having attributes such as name, password,description,date etc.) now the problem lies anyone can visiting the page ...
0
votes
2answers
2k views

WPF ListView with GridViewColumn and DataTemplate

I have a "CheckedListBox" which is created by adding a datatemplate with a checkbox to a listview. The problem is that I need columns too. The following code: <ListView x:Name="lbDatabases" ...
0
votes
1answer
339 views

How to access the element within the DataTemplate of GridViewColumnHeader?

How can I get access to an element (TextBlock) within the DataTemplate of GridViewColumnHeader from the code???? I want to set focus on the column header.
0
votes
2answers
453 views

Multiple databound controls in a single GridView column

I have a grid view that is data bound to a dataset. In a grid I have a column DefaultValue, which has three controls in it - a dropdownlist, a checkbox and a textbox. Depending on the data that is ...
0
votes
3answers
3k views

How to Set a gridview column width when binding to a datatable

I am binding a table to a gridview in asp.net as such grdIssues.DataSource = mdtIssues; grdIssues.DataBind(); The problem is I cannot then control the column width, asp.net seems to decided on ...
0
votes
1answer
1k views

WPF Check/Uncheck all checkboxes located in a gridview

I have a gridview with some columns. One of these columns is checkbox type. Then I have two buttons in my UI, one for check all and another for uncheck all. I would like to check all checkboxes in ...
0
votes
1answer
944 views

Wpf binding to Foreground with GridViewColumn

I'm doing : <ListView Margin="34,42,42,25" Name="listView1"> <ListView.View> <GridView> <GridViewColumn Width="550" Header="Value" DisplayMemberBinding="{Binding ...
0
votes
1answer
210 views

How to add GridViewColumnHeader to GridViewColumn dynamically?

Hi I am creating GridView column dynamically like this: GridViewColumn idColumn = new GridViewColumn(); grdMain.Columns.Add(idColumn). Now I want to attach ColumHeader to create the column ...
0
votes
1answer
621 views

Programatically binding a header in a Gridview

I have a datatable being built in code which can dynamically have any given number of columns. I have to group the rows within the Gridview by adding a new TableRow based on the first column. This ...
0
votes
1answer
138 views

Gridview and Column sets

I have a Gridview that is data bound to an array of objects, with a ton of properties attached to them. The grid would need to be too wide to show all of them at once (and also overwhelming for the ...
-1
votes
2answers
37 views

How to set auto to Width property of GridViewColumn?

I tried all ways at here(stackoverflow.com) but nothing can help me with my problem.At 1st i want to bind it to property in ModelView,but it doesnt helped.Now i want to set auto.What to do ?