0
votes
1answer
72 views

WPF DataGrid and the WPF Toolkit on Codeplex

ok, I'm totally confused. I'm new to WPF (don't know how many times I read this sentence in the last week) and I'm investigating in DataGrids for my project. The DataGrid in WPF 4.0 does not provide ...
0
votes
0answers
53 views

DataGridCheckBoxColumn shows empty cells without checkboxes (using WPFToolkit 3.5)

Good day! I have the next problem: I'm using WPFToolkit.dll Version 3.5. I'm trying to add DataGridCheckBoxColumn and there is no any success. CheckBox column should display bit-column from mssql ...
1
vote
0answers
204 views

Extended WPF Toolkit Datagrid with binding

Sorry but I only found the way with the FieldName defined in the culumn tag or the old style <xcdg:DataGridCollectionViewSource x:Key="cvsMetals" Source="{Binding MetalTypes}"> ...
2
votes
1answer
140 views

Bind a datagrid one object per cell

I would like to bind some objects to a datagrid in WPF. I would VERY MUCH like to avoid DataTable! Consider the following code: public ...
1
vote
0answers
268 views

WPF toolkit DataGrid - space after the last row on Scrolling

I am creating a wrapper for Datagrid. Main point is to have possibility to set summary/footer rows at the end. Generally I've solved this task, but I have a space between the last row and the ...
-1
votes
2answers
153 views

Override protected virtual without inheritance

I have a bunch of DataGrids in my app. I need to override some protected virtual method for all of them. Is there something better than using derived from DataGrid class with not so familiar name? I ...
1
vote
2answers
1k views

How can I format WPFToolkit.DataGridTextColumn by full date?

I have searched and tried many methods to format a Date of Birth column by not only Month and Day, but also taking into account the Year. I can't believe this is so difficult to do. I have created ...
0
votes
0answers
122 views

WPFToolkit Datagrid not showing column splitter

I am using the WPF Datagrid. I have set the resize property of columns in datagrid to true. Still it doesn't show splitter icon on columns of datagrid. WpfToolkit version is 3.5.31016.1
0
votes
1answer
116 views

datagrid and href link wpf

I have a column in my datagrid that contains only URL, I would like to make all of them clickable, what do have I have to do ?
0
votes
1answer
245 views

WPF Toolkit Datagrid , Styling the SelectorAll

I want to style the upper left element of this Datagrid that selects all rows but I don't know how. Does anyone have an example for me or does anyone know which element I need to style ? My Datagrid ...
3
votes
1answer
192 views

How do I disallow incomplete rows from being added in my DataGrid?

I have a DataGrid (currently the .NET 3.5 WPFToolkit version, but I can use the .NET 4.0 out-of-the-box DataGrid if needed) bound to a collection of objects. Three of the columns in the data grid ...
0
votes
1answer
480 views

Datagrid not showing data even though its boudn

I have a problem with my MVVM Light implementation where I have my WPF Toolkit DataGrid and Data context bound to the correct object but no data is showing up. Can someone tell me what I'm doing ...
0
votes
3answers
503 views

Datagrid: generate columns from a property of the ItemsSource collection

I'm trying to create a datagrid with auto generating columns. Let's say my Collection is a property named Articles of my viewmodel of type ObservableCollection<ArticleWrapper>. I bind now the ...
2
votes
2answers
454 views

How can DataGridComboBoxColumn style be changed?

I need to change border style to invisible on "DataGridComboBoxColumn"... How can I do it? I hope there is another way then changing to datagridTemplate and put combobox element with my style ...
2
votes
0answers
352 views

WPF Toolkit Datagrid doesn't show splitter icon on columns

For WPF datagrid I am using following lines of code in xaml file. I have set the resize property of columns in datagrid to true. Still it doesn't show splitter icon on columns of datagrid. ...
2
votes
2answers
476 views

Overriding DataGridTextColumn

I am trying to provide a DataGrid column that behaves like the DataGridTextColumn, but with an additional button in editing mode. I looked at DataGridTemplateColumn, but it appears easier to subclass ...
0
votes
2answers
527 views

ContentTemplate Binding question

I have DataGrid control from WPF Toolkit in my app. I need replace default TextBlock used for cells with tuned TextBlock. XAML-code looks something like: <Window.Resources> <Style ...
0
votes
1answer
145 views

How can I size all rows to evenly fill all the height of a DataGrid?

I have a WPF application that follows the MVVM pattern. The View contains DataGrid (from WPF Toolkit) that displays some information and supports paging. I want the rows number to depend on the ...
1
vote
1answer
387 views

How to add column in datagrid

How i can add column in wpf toolkit datagrid from code behind? this does not works: DataGridTemplateColumn txtc = new DataGridTemplateColumn(); txtc.Header = "2"; ...
0
votes
1answer
130 views

How do I handle this exception?

I have a WPF Toolkit DataGrid with the ItemsSource property bound to a DataTable. The DataTable has a unique constraint on one of the columns. If I try to enter non-unique data into the column an ...
1
vote
0answers
314 views

Binding graph to DataGrid in WPF

I have displayed a DataGrid in my WPF project window, I also want a graph below it which takes the values from rows and columns and plots it. I have been trying to do alot of things like binding ...
2
votes
1answer
516 views

WPF Toolkit Datagrid with checkbox: How to implement and receive the value?

My datagrid is not going to read any value from database, but just need to read a list of text to be the option name. how to implement it in wpf ? i mean i don't know what the xaml for this and code ...
0
votes
2answers
613 views

How do I bind cell value to a specific property on an object?

I have a DataTable that is populated at the cell level with the following type: public class GridCell { public string Value { get; set} public Guid Id { get; set; } } I've bound the ...
0
votes
1answer
1k views

WPF .Net 4.0 Datagrid, cascading comboboxes not cascading on cell update, only after row update

I'm new to WPF and I'm finding that the WPF .Net 4.0 Datagrid doesn't appear to handling cascading comboboxes. Only after focus is removed from a row do the cells populate correctly with the right ...
3
votes
2answers
345 views

WPF Toolkit - having problem Binding in the DataGrid control

Hey guys, first of all i must say, this may seem a lot of code, but it is easy to read. I am trying to bind out some stuff and i get this as a result: http://img694.imageshack.us/f/28475988.jpg/ as ...
0
votes
1answer
128 views

How to define datatemplates for datagrid?

This is probably a really basic question, but I'm new to this and relying on Google searches, so... I'm trying to put together a datagrid that displays rows of text containing an ID and multiple ...
1
vote
2answers
478 views

Double list - WPF Toolkit DataGrid

I have a datagrid from wpf Toolkit, with the itemsource binded to a Observable<Item>. In the Item Class, I have another Observable<bool> list containing the values to be displayed. I ...
0
votes
1answer
638 views

WPF ToolKit Datagrid refresh binding

On my datagrid I've got a DataTrigger determining which colour to set the foreground (Text) to be. This value is being stored as a property of my page. I've got this all working nicely but now I'm ...
3
votes
2answers
1k views

How to fix datagrid groupheader from scrolling

Hi i was looking to align my group headers horizontally.I had succeeded to do so but now the problem is that if i scroll horizontally my group headers are also scrolling.How to fix this.I want my ...
4
votes
1answer
411 views

How to create a gap between the colums of a WPFToolkit DataGrid

I have a WPF Data Grid (From the WPF Toolkit as the title indicates) and I want a gap between some Colums, where not even a header is above and you can see the background between. I don't have any ...
0
votes
1answer
1k views

WPF DataGrid: Cancel the first row selection by default

In my DataGrid the first row becomes selected by default. How can I cancel this? <Window x:Class="WpfApplication50.Window7" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
2answers
4k views

wpf datagrid.How to Merge or group cells..?

I am trying to Merge cells in WPF toolkit datagrid .I am trying to do something as shown in the image below.We can do this in Winforms datagrid.But how to do this using WPF toolkit datagrid ?.Or is ...
0
votes
1answer
625 views

Why did my DataGrid styling break when upgrading from .NET 3.5 w/ WPF Toolkit to .NET 4.0?

I just converted a WPF project from .NET 3.5 to .NET 4.0. I'm now using the .NET 4.0 DataGrid control rather than the WPF Toolkit DataGrid control. Functionally, everything is still working, but my ...
2
votes
1answer
473 views

Changing FlowDirection of a cell in Wpf's DataGrid

I Have a DataGrid with its FlowDirection set to "RightToLeft". Problem is when displaying negative numbers, the minus sign is shown on the opposite side. Setting the FlowDirection of the cell itself ...
0
votes
1answer
779 views

How to add an item from one datagrid to another then edit it in WPF

I have an issue when I try to use datagrid.items.add() to add items from one datagrid to another. Basically I have two data grids acting in a master slave relationship. The First DataGrid1 is used to ...
0
votes
3answers
2k views

How to create a standard DataTemplate for DataGridTemplateColumn?

I've got a DataTemplate for a DataGridTemplateColum wich looks like this: <toolkit:DataGridTemplateColumn x:Name="DataGridTextColumnIstVorvorjahr" IsReadOnly="True" ...
8
votes
4answers
2k views

WPF Toolkit DataGrid column resize event

I am using WPF Toolkit Datagrid in one of the applications I am working on. What I want is to store the column width and displayindex as a user preference. I have achived it for column displayindex ...
2
votes
1answer
1k views

WPF DataGrid columns alternating coloring

How can I make columns coloring in DataGrid if I also want use AlternatingRowBackground property? I have some ideas, but it doesn't work :(. <de:DataGrid Name="dataGrid1" ...
0
votes
1answer
1k views

WPF DataGrid not appear in Toolbox?

I am working with Visual studio 2008. I want to work on WPF DataGrid control. I downloaded WPF toolkit and install it, and then added toolkit reference in my project, but it does not recognize ...
0
votes
1answer
420 views

How set color for cell (DataGrid WPFtoolKIt)?

i need this set RED color. how to do it? DataTable dtSet = new DataTable(); string sql = @"requevst"; using (MySqlConnection connection = ConnectToDataBase.GetConnection()) { ...
1
vote
2answers
1k views

I need the Expand / Collapse for RowDetailsTemplate

I have wpfTolkit datagrid. He has DataGrid.RowDetailsTemplate I need to do the button when clicked it will Expand / Collapse. How to do this I could not find the event you want <Custom:DataGrid ...
0
votes
1answer
270 views

Handling Checked differently depending on whether it's called from a mouse click or virtualization

I've got a WPF toolkit datagrid with virtualization turned on. Each row has a check box bound to a bool in the underlying model. The check boxes (in addition to the data binding) also have Checked ...
1
vote
0answers
200 views

Styling WPF toolkit datagrid

I hope to find an answer on customizing Datagrid from WPF toolkit 2010. I'd like to add a TITLE area to be above DataGridColumnHeaderPresenter of the datagrid. The problem is that I want it to be as a ...
5
votes
1answer
10k views

Datagrid text alignment

I was wondering if anyone had an easy way to get the text in a WPF data grid to be center aligned. I got the data grid to work just fine, but the right text alignment bothered me. I goggled some, and ...
0
votes
1answer
332 views

WPF Toolkit's DataGrid sort, change reflect to the data source?

When I sort one of the columns (click the header column) in DataGrid, does the change on UI (the row order) reflected back to the data source ? I use List object as source.
1
vote
2answers
957 views

Updating an ObservableCollection in WPF causes screen flicker; How can I prevent it?

I have an ObservableCollection bound to a WPFToolkit DataGrid in an MVVM pattern. Every 30 seconds I have a background thread that is querying a service for some data. When it returns, it marshals it ...
1
vote
2answers
2k views

How do I change the color of Cell in WPF DataGrid based on a property of the object in itemsource?

I have a very simple object called CellData. Is defined as: public sealed class CellData { internal string DisplayText { get; set; } public string Color { ...
0
votes
5answers
1k views

DataGrid - Displaying Running Total From Top of Grid Through Current Row

How would I display a running total for a particular column of each record that is displayed in a DataGrid? I'd like to keep the computation logic in the view model. Desired Output: Value | ...
2
votes
1answer
179 views

DataGrid SelectionChanged happens too often

As I have a DataGrid as another DataGrid's RowDetailsTemplate, I've got a strage effekt. If I Change selection in my inner DataGrid, the SelectionChanged-Method in the outer Grid is automatically ...
1
vote
1answer
1k views

How to add filter and paging to WpfToolkit datagrid

I want to add filter to columns in WPFToolkit datagrid. Is it possible to make it work like the ones in commercial grids (like in DevExpress's or Telerik's..)? Also a small second question about ...

1 2 3