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

learn more… | top users | synonyms

0
votes
0answers
44 views

Add child controls dynamically in c# wpf

In the XAML i have the following; <GridViewColumn> <GridViewColumn.CellTemplate> <DataTemplate> <CheckBox /> </DataTemplate> ...
0
votes
1answer
146 views

How to set Gridview Column width as per database field width?

I am new to windows desktop application development. I have a grid in which I am displaying list of customers whose bills are printed. The form looks like this. The grid in this form displays the ...
1
vote
1answer
55 views

Why is FindAncestor binding not working in GridViewColumn?

I'm trying to create my own GridViewColumn and having some issus with binding. Can someone explain to me why the following Header-binding does work <GridViewColumn ...
1
vote
1answer
406 views

DataTemplate for each DataType in a GridViewColumn CellTemplate

I have an ObservableCollection which contains view models of multiple types, and I would like to make a DataTemplate for each type within each of my GridViewColumn's CellTemplates. In this simple ...
0
votes
3answers
443 views

Bind GridViewComboBoxColumn Datasource programmatically

On a WinForms application with C# I'm using RadGridView control of Telerik company. One of the columns of this RadGridView is of type GridViewComboBoxColumn. I want to give this column a DataSource ...
0
votes
0answers
145 views

How to change the selected value for a combobox inside a gridcolumn based on the value selected of another.

I am learning WPF and working on changing an existing application. I have a comboxbox, "Actions For All", and a listview containing a gridview with one of the columns is a combox, "Action". For ...
1
vote
0answers
116 views

binding combobox inside gridview

I have a listview that holds a gridview. I have a seperated list with Devices list. Every device holds a list of Connectors. every connector has a list of Tags. every Tag has a property ...
0
votes
0answers
45 views

Why is GridViewColumn.DisplayMemberBinding always generated as textblock?

In WPF, when I specify GridViewColumn.DisplayMemberBinding, it will always be rendered as a textblock containing the text specified in the binding.. Is it possible to change this behaviour, e.g. to ...
1
vote
0answers
60 views

how can make runtime ListView with binding? wpf

for example I can't get result from this code! please help me, tnx. :) GridViewColumn gvc6 = new GridViewColumn(); gvc6.DisplayMemberBinding = new Binding("sum"); ...
2
votes
1answer
239 views

How to bind GridViewColumn's DisplayMemberBinding in code

I have a MultiColumn TreeView which uses a GridViewColumnCollection. I my situation, I don't know how many columns will be there, nor their header names. That's discovery at run time. Hence I have ...
0
votes
2answers
67 views

Why this Binding doesn't work properly even it gets value from source?

I have this own class : public class PeriodContainerPanel:StackPanel { public PeriodContainerPanel() : base() { addCollectionsToStackPanel(); } private void ...
0
votes
2answers
319 views

GridviewColumn width adjusts for first entry only; when set to auto - WPF

I am trying to achieve following things 1. Set Minimum width for gridview column to some value. 2. When entries are added to this column, column width should adjust accordingly. I have written ...
2
votes
1answer
337 views

getvalue from FrameworkElementFactory

Am having a list view with one GridViewColumn GridViewColumn gvc = new GridViewColumn(); DataTemplate dt = new DataTemplate(); FrameworkElementFactory ch = new ...
0
votes
0answers
86 views

Update a GridViewColumn CellTemplate depending on column order

Is there any way to update/apply a different CellTemplate depending on the position of the column ? For exemple, I have a ListView (with a GridView as a View), with 3 columns. ...
0
votes
2answers
646 views

How to bind to a property on a gridviewcolumn from its celltemplate

The general problem I want to solve is to have just one datatemplate for a checkbox which I can then use for many different columns in a listview (using a gridview). In all examples I've seen a ...
2
votes
1answer
1k views

TextBlock text wrapping in GridViewColumn.CellTemplate not working

I am having problems getting the TextWrapping to work in this example. Can anyone see what I am duing wrong here? <ListView Name="listViewReportedException" ItemsSource="{Binding ...
0
votes
1answer
156 views

Keyboard access for GridViewColumnHeaders?

A ListView requirement we have is that the column headers be accessible by keyboard, which doesn't happen with the default ListView. For example: <StackPanel x:Name="LayoutRoot"> ...
0
votes
1answer
926 views

Styling GridViewColumns

I was browsing stackoverflow to try to figure out a way to style the GridViewColumns in my ListView. I came across this: WPF Text Formatting in GridViewColumn The top answer shows how to style one ...
-1
votes
2answers
1k views

How apply MinWidth for ListView columns in WPF in control template?

Following the answer to a similar question here, I was able to set the MinWidth on the XAML page. What I would like to do is accomplish this in the control template for all GridViewColumn's in all ...
2
votes
1answer
364 views

Autosize GridViewColumns programmatically by content

I want to set programmatically my GridViewColumns to autosize by content, not by header (Width = double.NaN) I have searched for a long time and I found this problem solved with DataGridColumns, but ...
-1
votes
2answers
279 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 ?
1
vote
1answer
210 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 ...
0
votes
0answers
137 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 ...
1
vote
1answer
449 views

Get GridViewColumn from control inside DataTemplate

Example: <ListView Name="lvAnyList" ItemsSource="{Binding}"> <ListView.View> <GridView> <GridViewColumn Header="xx" DisplayMemberBinding="{Binding XX}" ...
0
votes
1answer
378 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
264 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 ...
3
votes
2answers
2k 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.
0
votes
2answers
2k 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 ...
1
vote
3answers
861 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]; ...
0
votes
1answer
373 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
1answer
405 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
939 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
857 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
867 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
877 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
43 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
1answer
2k 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
723 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
91 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 ...
6
votes
2answers
16k views

WPF ListView with GridViewColumn and DataTemplate

I have a CheckedListBox control which is created by adding a DataTemplate with a CheckBox to a ListView. The problem is that I need columns too. The following code doesn't display the check boxes: ...
0
votes
1answer
777 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.
1
vote
2answers
1k 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
176 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"> ...
9
votes
2answers
2k 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 ...
1
vote
2answers
926 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 ...
3
votes
1answer
895 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 ...
1
vote
3answers
14k 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 ...
1
vote
1answer
1k views

How to get x:Name value runtime

I got: <ListView.View GridViewColumnHeader.Click="ColumnHeaderClick"> <GridView> <GridViewColumn x:Name="Col" Header="Item"> private void ...
0
votes
1answer
2k 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
2k 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 ...

1 2