Tagged Questions
The datagridtextcolumn tag has no wiki summary.
3
votes
1answer
988 views
Silverlight DataGridTemplateColumn vs. DataGridTextColumn
Why does this work...
<data:DataGridTemplateColumn Header="YTD v. Exchange" x:Name="YTDvExchange" Visibility="Collapsed" CanUserSort="True" SortMemberPath="ytdExchangeReturn.value">
...
3
votes
1answer
493 views
Inheriting from DataGridTextColumn and overriding GenerateElement
I'm attempting to create a custom DataGrid where I can format individual cells based on the cell value (ie; red text for negative values, green for postitive) ala this approach...
...
2
votes
0answers
976 views
WPF DataGrid cell string format as a style or template
I tried several ways to factor out the format of a cell in a WPF DataGrid (the one provided with .NET 4):
a data converter,
the "StringFormat" binding property within a style,
the "StringFormat" ...
2
votes
1answer
377 views
Find root element of DataGridColumn
I am using the LogicalTreeHelper.GetParent() method recursively to find the root elements of various other WPF elements. This works fine with almost everything, but it fails for the DataGridColumn ...
2
votes
2answers
2k views
How do i add tooltip to a datagridtextcolumn
I'm using WPFtoolkit DataGrid ,I have to wrap text in a DataGridTextColumn or
I have to add a ToolTip to the text column. I have searched the net but i couldn't get a proper solution. Expecting ...
1
vote
1answer
84 views
DataGridTextColumn namespace found in silverlight MainPage xaml code behind, but not found in silverlight library
I'm successfully using DataGridTextColumn in a silverlightapp main page code behind.
This works:
using System.Windows.Controls;
namespace myNamespace
{
public partial class MainPage
{
...
1
vote
1answer
372 views
WPF: how can I style DataGridTextColumn in one style class?
I try to stylize DataGridTextColumn setting Header and Cell styles separatly:
<Style x:Key="headerStyle">
<Setter Property="DataGridColumnHeader.Background" ... />
...
...
1
vote
1answer
404 views
How do I detect when a cell's value has changed in Silverlight?
I'm working in Silverlight, trying to figure out how to set a grid cell font color based on the contents of the cell.
I have an ObservableCollection bound to a DataGrid, and my items implement ...
1
vote
1answer
2k views
0
votes
1answer
44 views
WPF DataGridTextColumn - Use '-' instead of '0'
How can I get a DataGridTextColumn to display a '-' (hyphen) instead of 0.
Here is how the data grid is currently setup:
<Grid>
<DataGrid x:Name="EmployeeHours"
...
0
votes
2answers
110 views
how to set binding stringformat to all DataGridTextColumn controls?
This is one of my DataGridTextColumn controls looks like :
<DataGridTextColumn x:Name="contractStartDateColumn" Header="Start Date" Binding="{Binding Path=StartDate, ...
0
votes
2answers
560 views
How to Format a DataGrid column in code using a binding
I can't figure out how to add the format parameter to the following DataGrid column. I need to show the number with two decimal points.
I have a silverlight DataGrid that I'm adding columns to ...
0
votes
2answers
203 views
SL4 - Binding DataGridTextColumn to a property
I have a DataGrid. In the DataGrid's AutoGeneratingColumn event I have some code that looks like this:
if (e.Property.Name.Contains("MetaData"))
{
var descCol = new ...
0
votes
0answers
234 views
How add a global “IsReadOnly” style to all DataGridTextColumns
I currently have a ResourceDictionary file for my WPF application, which pretty much adds every style that I could possibly want throughout all of my application's DataGrids.
Except one.
How can I ...
0
votes
1answer
312 views
How to restyle TextBox of DataGridTextColumn?
I am working with a Wpf application. I have created a custom style for wpf DataGrid (provided in Wpf Toolkit). It all works fine except that I am unable to apply a Style on the TextBox that comes on ...
0
votes
1answer
1k views
How to set value in WPF datagridtextcolumn cell when the datagridcombobox cell value is changed?
I am developing an application using WPF 4.0 Datagrid. My Datagrid grid has one datagridcomboboxcolumn and one datagridtextcolumn. How to change the datagrid text cell value using the ...
0
votes
2answers
1k views
WPF: How to bind a numeric property to DataGridTextColumn?
I thought it should be a simple thing for WPF, but I can't make it work...
I have an int property (Divisions) on my class and I want to bind it to a DataGrid column.
<DataGrid ...
0
votes
1answer
433 views
WPF question regarding the binding inside of DataGridTextColumns
Today I noticed a strange behavior regarding binding the header of a DataGridColumn to the ViewModel.
The following binding works perfectly (name of the DataGrid is MyGrid):
<DataGridTextColumn ...
0
votes
1answer
817 views
WPF datagridtextcolumn - always show textbox
By default the WPF datagridtext appears as a label and enters an edit state upon clicking. Is there a way to modify the column so that the textbox is always visible (instead of depending on the click ...
0
votes
1answer
407 views
DataGridTemplateColumn for individual control-column vs DataGridTextColumn
what is the difference, both works: DataGridTemplateColumn versus DataGridTextColumn
both works means I can edit+display rich text in the cell.
<DataGridTemplateColumn ...