The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
433 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
1answer
213 views

How can we allow user to Add/Edit/Delete records from WPF gridview control in different ways?

In WPF xaml page I want to provide user one combobox in which there will be two options: (1) Allow user to edit in gridview (2) Allow user to edit in form If the user selects first option, then I ...
0
votes
1answer
224 views

Set entire selected DataGrid row template to CellEditingTemplate

I have a question regarding WPF DataGrid. For the sake of IDataErrorInfo validation I would like to set the entire selected row as editing - by that I mean setting every cell's (in that row) data ...
0
votes
1answer
199 views

How to solve generic ComboBox representation in a generic GridView

I have a DataGrid in a user control (DataGridView). This usercontrol propagates a binding to DataGrid's ItemsSource from anywhere in the application and fills it with List of K. For this example ...
1
vote
1answer
469 views

DataGridView CellTemplate setting not working properly

I try for hours to create templates for columns created dynamically. Here's the code (It's not from my main project but I simplified the code to reproduce my issue) : First, I created a class ...
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
1answer
86 views

Binding properties to CustomDataTemplate

I have a list of items public List<Item> MyItems { get; set; } displayed on the DataGrid. One column shows status "icon" which is defined by template. Code looks something like that: ...
4
votes
2answers
258 views

Is it possible to parameterize the binding on a DataGrid CellTemplate in a resource?

I'm putting together some generic CellTemplate styles for a WPF grid (WPFToolKit DataGrid), and I’m not sure of the syntax to use to make the binding generic. So for example, I have this template, ...
1
vote
1answer
1k views

WPF DataGrid: CellEditingTemplate ComboBox multiple data to CellTemplate TextBox

I have googled around but with very limited luck. I have a question regarding editable WPF DataGrid; in a CellEditingTemplate a ComboBox is shown, but in CellTemplate a TextBox with corresponding ...
0
votes
1answer
365 views

Combine CellEditingTemplate CellTemplateSelector DataGrid

I would like to apply CellTemplateSelector to a CellEditingTemplate. Can they be combined? This is them separate <DataGridTemplateColumn x:Name="dateScheduledColumn" Header="Date ...
1
vote
0answers
322 views

Inheriting WPF DataGrid styles in a custom CellTemplate

I wish to have a custom column type in a WPF datagrid, part of which will be a textbox for user input. Unfortunately, it does not appear to inherit the look and feel of the datagrid itself- it doesn't ...
3
votes
1answer
820 views

Purpose of using FrameworkElementFactory

In one of the application I am working I have found this code - public class MatrixCellTemplate : ColumnDataTemplate<MatrixCellContainer> { } public class ColumnDataTemplate<T> : ...
1
vote
1answer
679 views

Can I define CellTemplate of DataGrid as a Resource so that it can be reused in multiple columns?

I want a specific template for all my columns in DataGrid. The usual method is I will replicate the entire XAML for DataTemplate multiple times in the DataGrid in each of the Column. Is there any way ...
3
votes
2answers
1k views

How to trigger cellTemplateSelector when Items changed

I have 2 templates for DataGrid's CellTemplate. When I change the items, it won't help me select the template for me, my DisplayModeTemplateSelector won't even be called! What I'm wondering is if ...
0
votes
2answers
2k views

Add Custom Template To ListView - GridView WPF?

I currently have this XAML Code: <ListView x:Name="listFeedSearch" Margin="-548.856,95.333,0,7.667" HorizontalAlignment="Left" Width="542.5" RenderTransformOrigin="0.5,0.5" ItemsSource="{Binding ...
1
vote
1answer
827 views

GridView in ListView with high number of rows, columns and cell templates

I'm having a problem with my ListView/GridView. In fact, my grid has 285 rows, and 24 columns constructed dynamically. My grid was so slow then I decided to do some other tests directly in XAML ...
0
votes
1answer
1k views

Change ListView CellTemplate based on state of item

I have a ListView that is has an ObservableCollection as its ItemsSource, and it has several columns. One of these is a State column which, depending on the current state of the item, shows a ...
1
vote
0answers
649 views

Overriding the cell templates of a WPF GridViewRowPresenter

I'm producing a custom control that uses a GridViewRowPresenter in a similar way to the way that the ListView does - binding to the Columns collection of a View property on my control which is of type ...
0
votes
1answer
671 views

How to fire checkbox checked event when column binding is done in code behind?

I have a data grid, where I create columns on the fly in the code behind. As I create the column, I create associated cell template and cell edit template to convert the value to boolean to represent ...
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
257 views

Double Values in listView cell

I need to show old and new values in my ListView, when the record is changed. I mean each cell should show new value and old value. For now I'm doing so: <GridViewColumn.CellTemplate> ...
0
votes
2answers
986 views

Force DataGrid into edit mode when using ListView for CellTemplate

Greetings, In an WPF DataGridTemplateColumn I have a CellTemplate using a ListView and a CellEditingTemplate using a DataGrid. <DataTemplate x:Key="LimitsTemplate"> <ListView ...
3
votes
1answer
2k views

DataTemplate defined in XAML has null VisualTree

I'm using WPF with .NET 3.0. I have a relatively simple DataTemplate defined as the CellTemplate for a GridView. I expect the DataTemplate's VisualTree property to contain a FrameworkElementFactory, ...
1
vote
1answer
4k views

Silverlight - Access the Layout Grid's DataContext in a DataGrid CellTemplate's DataTemplate?

I am using Silverlight 3 to develop an application. In my app, I have a layout Grid (named "LayoutGrid") in which I have a DataGrid (named "PART_datagrid") with DataGridTemplateColumns. The LayoutGrid ...
1
vote
1answer
4k views

WPF Dynamic DataTemplate: GridView CellTemplate is not null but VisualTree property is null

I am trying to set the DataTemplate of my ListView.GridView's CellTemplate dynamically at runtime. The problem is when I do this, nothing happens. I checked the CellTemplate and it's not null but its ...