New and improved DataGrid control for Windows Presentation Foundation (WPF) applications. Can be bound to a multitude of datasources. Flexible, programmable rendering options to match custom user interfaces.

learn more… | top users | synonyms

1
vote
1answer
140 views

How to bind the wpf datagrid scrollviewer visiblity to button visibility?

<Window x:Class="WPfDataGrid.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" ...
1
vote
0answers
90 views

Combobox in Datagrid Rows WPF

I want to place Comboboxes in 2nd and 4th Rows of Datagrid. How to achieve this??I searched the tutorials , there they have explained how to place comboboxes in datagrid columns ( using ...
0
votes
2answers
58 views

Dock a resizable wpf DataGrid at bottom of window

In a WPF project, I want to dock a DataGrid to the bottom of a window so that if the window resizes, I will be able to utilize more of the DataGrid. Like this: How do I do that? All my DockPanel ...
0
votes
0answers
182 views

WPF Nested binding from DataGrid row up to ListView 'CurrentItem'

I'm just tangling with an awkward nested binding issue in WPF. Essentially, I'm trying to bind to a value of the 'currentItem' of the ListView control, from a DataGrid row item, based within the ...
0
votes
1answer
300 views

How to bind DataGridTemplateColumn.Visibility to a property outside of DataGrid.ItemsSource?

I need to bind the Visibility of a DataGridTemplateColumn to a property outside of the DataGrid.ItemsSource,because i need to bind this column in the all the rows to one property inside the ...
0
votes
1answer
89 views

WPF DataGrid: Disabling selection over multiple columns

I'm trying to keep the user from making cell-selections over multiple columns by hooking into the DataGrid's SelectedCellsChanged event. For some reason, though, my code behaves a little strange. ...
0
votes
0answers
97 views

WPF DataGrid, Single click edit causes UI refresh problems

I have a DataGrid with Single click editing feature, implemented using Behaviors. The DataGrid has TextBox and ComboBox columns both using CellEditingTemplates. If user clicks on one of the TextBox ...
0
votes
0answers
119 views

Issue to get wpf datagrid scrollviewer visibility by dynamically

private void Window_Loaded(object sender, RoutedEventArgs e) { //Some logic to fill the data in datagrid ScrollViewer scrollview = ...
0
votes
0answers
33 views

Binding in datagrid combobox

I have a datagrid and two combobox in datagrid. I want to display result into those combobox through binding one combobox gives serial number and other losscode <DataGrid Name="SNLossGrid" ...
0
votes
1answer
265 views

Need help on updating mysql database from wpf datagrid use Two-Way binding using submit command

basically i'm new in C# and WPF, i have a WPF DataGrid that bind with DataTable here the XAML for DataGrid <DataGrid AutoGenerateColumns="True" CanUserAddRows="False" HorizontalAlignment="Left" ...
1
vote
1answer
206 views

how to move from one tabitem to another in WPF

I have a tab-control with three tab items. each tab item has a datagrid placed on it. and all these three datagrid's on their respective tab items is of Master-Detail-SubDetail form. how to move ...
0
votes
1answer
38 views

WPF DataGrid giving inconsistent vertical alignment

I have the following UserControl with two DataGrids inside: <UserControl x:Class="emb.OrdersControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
0answers
277 views

Bind Dictionary to DataGridComboBoxColumn WPF

Helo guys.. My idea is make use DataGrid as a mapper template, first the grid will load data from, let say "Table A", whis one of the colum will display data from let say "Table B" i have a "Table ...
0
votes
0answers
100 views

WPF DataGrid Binding DataGridComboBox when AutoGenerateColumns is true

Although I am quite familiar with .NET technologies, especially in ASP.NET, I am new to WPF. I have a class named Animal, which contains a reference to AnimalType. I want to put a DataGrid to my ...
0
votes
0answers
126 views

Need Help on Binding DataTable and List into WPF DataGrid

first, apologize my bad english basically i'new in C# let say i have a two table and i want to store the result from those table into one datagrid the first table is exactly what would be the basic ...
2
votes
1answer
134 views

How to keep DataGridRow focus and selection synchronized?

I have a DataGrid and I want the selected row and the focused row to be synchronized, i.e. if the focused row changes, then the selected row changes as well as if the selected row changes, it becomes ...
1
vote
2answers
74 views

How to Access SelectedItem in one Page on a Separate Page

I have two datagrids separately on two pages, say a parentgrid on a parent-page and a childgrid on a child-page. how to access the selecteditem of parent-page to the child-page ? when the both the ...
0
votes
0answers
42 views

WPF datagrid and showing non-printable characters

I have problem with a conditional display of non-printable characters in datagrid cell. I want to display these characters when cell is in non-editable state, but when cell is in editable state I want ...
4
votes
1answer
153 views

WPF DataGrid custom sorting with some records locked

I have a WPF Datagrid with custom sorting implemented and it works fine. I need to lock some of the records in the collection to Top and Bottom (Top Lock and Bottom Lock). So when a particular record ...
0
votes
1answer
47 views

Overlapping two datagrids in WPF

In my project (WPF) I used two datagrids that two datagrids are placed one by one in same xaml window. When I run the application these two datagrids are overlapping. How can separate these two ...
0
votes
1answer
35 views

Tab into column headers with GridViewHeaderPresenter

I'm using GridViewRowPresenter/GridViewHeaderRowPresenter and I'd like to allow the user to tab into the column headers. I've tried the following with no luck... ...
0
votes
1answer
192 views

How to show row-number in First column of WPF Datagrid

While searching I found that, Row number can be set to rowHeader easily. But I want to show Row number to first column, Can any one help me how can I achieve this. Thanks in anticipation
0
votes
1answer
860 views

DataGrid with dynamic columns and rows

I have requirement where I have to show a tree view with list of tables and if user selects any table then it should show a grid with list of columns & rows should have a DataGridCheckboxColumns, ...
1
vote
1answer
39 views

Navigate from one datagrid to another on different pages

I have two pages (using NavigationWindow) in my application. when i click on a row in my datagrid1 on page1 , is it possible to navigate to page 2 and populate the details in datagrid 2 on page2.
0
votes
0answers
92 views

DataGridComboBoxColumn not showing anything

I have a DataGrid in my application which contains two columns. One is name and other is a ComboBox. Now problem I am facing is that in DataGrid only name is shown but ComboBox is not showing up. ...
0
votes
1answer
68 views

Remove ErrorTemplate from DataGridTemplateColumn ContentPresenter

I find that the ContentPresenter used to display the content of a DataGridTemplateColumn displays the default ErrorTemplate when the row's item contains validation errors. I can't see any direct way ...
1
vote
1answer
50 views

Highlight DataGrid column header when mouse overing

If I set CanUserSort to false in a DataGridTextColumn (or in a DataGridTemplateColumn) because I want to do the sorting manually, when I place the mouse over the column header, it doesn't highlight ...
0
votes
1answer
224 views

WPF: Convert Datagrid/DataTable to Table for printing

Im trying to 'print' the contents of my datagrid / datatable. I read something about converting DATAGRID To TABLE To FLOWDOCUMENT but I can't find a source how to do it. I just need some sample codes ...
0
votes
1answer
259 views

Bind to main DataContext from TabControl's DataTemplate

I'm trying to use a single DataGrid as the content for each tab in a tab control (I'll then reload the contents of the grid, to show models at different statuses when clicking on different tabs). ...
0
votes
0answers
61 views

“Recommended” way to bind model 1st, strategy = none, EF 5 data with derived entities to master detail grids in WPF

Or Win forms....I'm not fussy. I have a configuration database with about 10 tables/types in it, some derived by inheritance. I want to write the simplest possible UI, that displays the data and ...
0
votes
2answers
203 views

Add blank row at the end of a WPF datagrid conditionally (without using a default parameterless ctor)

I am trying to add a BLANK row at the end of a WPF 4.0 DataGrid conditionally (not via code-behind directly). I have tried the following but in vain - I have tried to do get the ...
0
votes
0answers
40 views

How to bind DataGrid Srollviewer verticaloffset value to a button in wpf?

<DataGrid x:Name="Dgrid1" AutoGenerateColumns="False" CanUserAddRows="False" IsReadOnly="True" FontWeight="Bold" SelectionMode="Single" Padding="5" BorderThickness="1" FontSize="14.667" ...
0
votes
0answers
70 views

Wpf DataGrid ClipboardCopyMode=“IncludeHeader” with custom header

I have a WPF table that has a custom header (based on a StackPanel) which includes a button that displays and handles setting the units of for the column. Which works nicely, however I want to be able ...
0
votes
0answers
47 views

How to Sort LIStView Data ALPHANUMERITICALLY in WPF

We have WPF form in which we have ListView. Currently when we sort, Items from Column, It sort based on Normal Sorting, But Now we need to sort them naturally. private void ...
0
votes
1answer
283 views

WPF Datagrid: How to change border thickness of a single cell programatically?

Im new to WPF Im trying to change the border of a single cell depending on the column and row index. So far I already have the code for getting the column and row index. Now I need to get 'that ...
-1
votes
1answer
51 views

Sorting Columns AlphaNumerically in LISTVIEW in WPF

We have WPF application, In which we are ListView in One form, We want to order item alphanumerically. When we sort the columns it needs to sort alpha numerical EG AW1 AW2 AW3 At the moment it ...
-1
votes
1answer
61 views

is it possible to bind a datagrid to a object

I would like to bind a DataGrid to an object, and not to a collection of objects, My scenario is, I have a single record with a few columns in the database that the user will keep updating, and ...
-1
votes
1answer
31 views

Loading Buttons on window loaded event depending on Number of User [closed]

We have WPF application, We want functionality like below. I want one form, which will contain Users name & one Button in front of each User. Means if Database have 10 Users, it will bring this 10 ...
0
votes
1answer
109 views

TextWrapping of DataGrid in WPF displays 2 lines only

<DataGrid Grid.Row="3" AutoGenerateColumns="False" Height="auto" x:Name="grdData" TabIndex="2" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Background="Transparent" ...
1
vote
0answers
158 views

How to Bind DataGridTemplateColumn.ClipboardContentBinding to SelectedItem of a Combobox that placed inside it?

I need to bind DataGridTemplateColumn.ClipboardContentBinding to SelectedItem of a Combobox that placed inside that.In fact I need to bind Combobox.SelectedItem to the current row of DataGrid.I tried ...
1
vote
1answer
422 views

Want to change the Cell background color in wpf datagrid

I am binding Rows with Classes. On each binding Row i want change the Cell back ground color on base of cell value. <DataGrid x:Name="dtstandardview" BorderThickness="0" Height="429" ...
0
votes
0answers
169 views

Browse Button in DataGridTemplateColumn of Datagrid in WPF

We have WPF application, In which we use DataGrid on one form. We have used multiple DataTemplateColumn in that DATAGRID. I need to take one button in one column, suppose 'BROWSE' button. Now when I ...
0
votes
1answer
124 views

SUM of “Amount” column in DATAGRID's DataGridTemplateColumn RUNTIME

We have WPF application, In which we use DataGrid on one form. At runtime, when we Enter value in DataTemplate column, I need to Show SUM of that specific column in DATAGRID Footer. So when each time ...
1
vote
1answer
36 views

Why are there strange backspace characters in my WPF datagrid?

Our software uses the DataGrid throughout its user interface for displaying editable lists. While editing some metadata, I wanted to remove the text in a particular column for many rows. This is ...
0
votes
0answers
145 views

Any Equivalent of DataGridTextColumn.width=“*” for DataGrid rows' height?

In my understanding, by giving the value "", a DataGridColumn expands to fill all available margin of a DataGrid. I'd normally specify "" for all the columns to make their widths equal and leave no ...
0
votes
0answers
283 views

WPF – datagrid data binding at runtime

I have a datagrid view and have set its property “CanUserAddRows” to “True”, I have assigned a null list to its ItemsSource, it show me first blank row. Exactly I want. Actually my scenario is that, ...
1
vote
2answers
316 views

Calculate SUM of “Amount” column in DATAGRID's DataGridTemplateColumn on in WPF

We have WPF application, In which we use DataGrid on one form. Now we want to calculate total of "AMOUNT" column of that datagrid on Winddow_Loaded event, So can it will display total of AMOUNT column ...
1
vote
1answer
365 views

How to change Selected Row Background Image in wpf DataGrid

I have DataGrid with the Following Code . In alter native row background have my Own Image . so is possible then also i want to change the Row Background Image on selected Row. <DataGrid ...
4
votes
3answers
464 views

Datagrid selectedItem and databinding

I have two datagrid displayed on my UI. When I select a particular row on datagrid 1, I would like to display the details of the datagrid 1 on datagrid 2. I am populating the datagrid data from a ...
0
votes
1answer
81 views

WPF Datagrid Browse Button Issue

We have WPF application, In which we use DataGrid on one form. Our requirement is that In One column Of that Datagrid there will be onr Button, After clicking it will ask for browse file, & it ...

1 2 3 4 5 27