The datagridtextcolumn tag has no wiki summary.
0
votes
0answers
2 views
reset converter on datagridtextcolumn in trigger
I am looking for a way to exchange the converter that is used for the content of a DataGridTextColumn. It should be dependent on the IsChecked state of a checkbox.
Right now I have a simple ...
1
vote
0answers
22 views
Cannot access property bound to DataGridTextColumn in another element such as Foreground
I have a simple DataGrid with its ItemSource bound to an ObservableCollection<Issue> where Issue is just a class object containing various properties. I have a handful of DataGridTextColumn ...
0
votes
0answers
12 views
Number entry problems in DataGrid
I have a DataTable (which was populated from a sql db table), and a DataView created from that DataTable, used as the ItemsSource for a DataGrid. One of the columns of the table is of type decimal ...
0
votes
0answers
66 views
Binding DataGridTextColumn to property of another control
I am trying to set the text of a DataGridTextColumn to the Text of a combobox that displays the user friendly text of a field in the DataGrid's itemsource.
I get the "Cannot find source for binding ...
1
vote
1answer
111 views
Binding a column header with a Itemsource
I am Having a Itemsource and from which i bind the values in the datagrid
<DataGridTextColumn Header="Message" Binding="{Binding Path=message}"/>
<DataGridTextColumn Header=" ...
1
vote
1answer
295 views
C# - WPF Using DataTrigger in DataGridColumnHeader
How can I use DataTriggers in a DataGridColumHeader? With this code below it doesn't work. Someone got any idea how i can fix this?
<DataGridTextColumn.HeaderStyle>
<Style ...
0
votes
0answers
785 views
Template for WPF DataGridTextColumn ElementStyle and EditElementStyle with Binding
I have a WPF DataGrid that has 10 DataGridTextColumns displaying numeric data that require identical formatting. I want the EditingElementStyle number formatting (raw decimal or float) to be different ...
2
votes
2answers
213 views
WPF DataGridTextColumn Can't type point for float data
I had a WPF DataGrid and use DataGridTextColumn Binding to a Collection. The items in Collection had some float property.
When my program launched, I modify the value of float property in DataGrid, ...
0
votes
1answer
126 views
How to set values of DataGrid cell in C#
I'm writing application in .NET 4.5 framework. I use DataGrid to show data. I want to add new text collumn and to each row I want to assign text value to cell in this collumn. I don't know How to do ...
0
votes
1answer
123 views
GWT TextColumn in CellTable with multiple lines
I'd like to display informations about a book in a CellTable in GWT. For example its content.
How can i create a TextColumn that displays that much text. Multiple lines or a scrollbar is what i'm ...
0
votes
0answers
58 views
How to populate a dataGrid with DataGridTextColumn
Okay, I'm new to C# GUI builder. I'm trying to make a spreadsheet like interface where values can be updated based on user input. I used a DataGrid from the WPF Toolbox and added this code:
...
2
votes
2answers
226 views
Is there a way to change the binding of a DataGridTextColumn when that column goes into edit mode?
All I really want to do is change the StringFormat for a particular binding on a DataGridTextColumn, but since that is defined by the binding, I suppose that I need to change the entire binding ...
0
votes
0answers
174 views
How do I set a new DataGridTextColumn's header in LightSwitch?
You would expect it to be simple:
var col = new DataGridTextColumn();
col.Header = "Header Text";
This is indeed what I found on MSDN for Silverlight.
However this isn't working for me. I see ...
0
votes
0answers
542 views
How can i use DatagridTextColumn.ElementStyle to Make DatagridTextColumn readonly?
can i use elementStyle to bind DatagridTextColumn IsReadOnly to a Property inside a ViewModel(here IsReadOnlyProperty)?
something like this:
<DataGridTextColumn.ElementStyle>
<Style ...
0
votes
0answers
92 views
DataGridTextColumn width datatriggers
I am trying to change the width of the DataGridTextColumn using DataTrigger but I cant seem to figure this out if anyone could suggest me who can I do this better. code is below
...
2
votes
2answers
2k views
How to set DataGridTextColumn text color?
I'm trying to change the color of a DataGridTextColumn.
Here's what I'm doing:
<DataGridTextColumn
Header="Status"
Binding="{Binding IsActive,
Converter= {StaticResource ...
0
votes
1answer
319 views
Binding ColumnDefinition.Width to a DataGridTextColumn does not fire when the usercontrol loads
I have a WPF usercontrol that holds a grid, some textboxes, and a DataGrid. The textboxes are filers for the data in each column so I'd like them to stay above the relevant column. This is easy unless ...
0
votes
0answers
692 views
DataTemplate in DataGridTextColumn.HeaderTemplate
I have the following code:
XAML
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
0
votes
1answer
341 views
How to make WPF Datagrid Column non-focusable?
I have a WPF datagrid being used for data entry but some DataGridTextColumn are information only and I have set their IsReadOnly="True" so their cells do not go into edit mode. However, they can still ...
0
votes
1answer
40 views
Need to convert CategoryID from Items table to CategoryNameA in Categories table inside view model
This is my first question and I apologize for my poor background knowledge. I've managed to fake my wake through a lot of C#/WPF/LINQ-to-SQL but I suspect that while I've gotten a lot of things ...
0
votes
0answers
227 views
Datagrid column width (not autogenerated) don't change if datacontext changes
i have a wpf datagrid with several defined DataGridTextColumns. When i bind long strings (100 characters) the bounded column grows correctly depending on content. When the datacontext change and the ...
2
votes
1answer
773 views
Formatting Zero Values as Empty String?
I'm struggling with my first foray into WPF string formatting. I'd like to be able to format a textbox column in a data grid with an empty string when the underlying value is zero and format all other ...
0
votes
1answer
642 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
950 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, ...
1
vote
2answers
2k 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 ...
1
vote
1answer
210 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
{
...
7
votes
1answer
4k 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" ...
1
vote
1answer
2k 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" ... />
...
...
0
votes
2answers
516 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
398 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 ...
2
votes
1answer
1k 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
3k 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 ...
3
votes
2answers
1k 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 ...
0
votes
2answers
4k 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
1k 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 ...
3
votes
1answer
2k 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">
...
4
votes
1answer
870 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...
...
0
votes
1answer
2k 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 ...
1
vote
1answer
632 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 ...
0
votes
1answer
624 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 ...
3
votes
1answer
4k views
4
votes
2answers
6k 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 ...

