Tagged Questions
The celltemplate tag has no wiki summary.
3
votes
1answer
981 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
54 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 ...
1
vote
1answer
181 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 ...
1
vote
0answers
292 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 ...
1
vote
1answer
3k 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 ...
0
votes
0answers
11 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
91 views
DataGridCell ContentPresenter vers. TextBlock
i can use in the DataGridCell-Template different ways for content: on the one hand the normal-way with a ContentPresenter (TextBlock.TextWrapping is not possible // Every different Content is ...
0
votes
2answers
281 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 ...
0
votes
1answer
331 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
281 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 ...
0
votes
1answer
394 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
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
1answer
196 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
543 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 ...
0
votes
1answer
3k 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 ...