Tagged Questions
-1
votes
0answers
18 views
How to use Multiple pages in one window with multiple viewmodels using MVVM in WPF
I want to use multiple pages in one window (I'm using different viewmodels). Currently, when I navigate to the other page, the data is loaded but isn't showing in the window.
Also, can you help me ...
0
votes
3answers
49 views
Checkbox with DataGrid WPF
I am trying to create a DataGrid in WPF 4.0 using MVVM...
Features required -
Muti - Select rows using a checkbox (single click)
A select all checkbox to check all the checkboxes in the datagrid
...
0
votes
0answers
43 views
error: Unable to cast object of type 'System.Windows.Controls.TextBlock' to type 'System.IConvertible'
i want to get a cell's value in datagrid wpf and i achieve this like 2,3 etc. then i want to compare an int value with this cell's value but i cannot get cell's value. how to get a cell's value ? my ...
0
votes
1answer
16 views
Passing parameters to a Page using constructors
In my application I have two pages placed on a Navigation Window.
Page 1 the Main Page and has three buttons on top ( like a ribbon menu) and a Frame ( on second half of the page to navigate within ...
2
votes
2answers
40 views
Datagrid column header values are missing
Beginner question. I have following XAML in my WPF form.
<DataGrid x:Name="GridTable"
ItemsSource="{Binding GridDataSource}"
HorizontalGridLinesBrush="#FFE2E2E2"
...
0
votes
0answers
20 views
How to Access button present in WPF cell of WPF table
I am Testing WPF Application using Coded UI.. My testcase is like verifying whether button is enabled or not. wpf button is present in wpftcell which is in the wpftable.
public void ...
0
votes
0answers
14 views
How to make ControlTemplate generic or common with TemplateBinding
I have modified RadComboBox control to display RadGridView inside it. I replaced ScrollViewer and ItemsPresenter with following XAML. It's working fine. However I have multiple ComboBoxes and I don't ...
0
votes
0answers
12 views
GridViewComboBoxColumn with multiple columns in RadGridView
I am using WPF Telerik RadGridView control. I want display multiple columns in GridViewComboBoxColumn with column title and sorting functionality.
How can do this? Do I need to modify ...
1
vote
1answer
45 views
How to bind an 2D array bool[][] to a WPF DataGrid (one-way)?
I have a matrix kind datagrid like this.
this grid is designed entirely in XAML
Now how to insert values into these datagridcell with 2 dimensional array ?
the values which is needed to be ...
0
votes
2answers
57 views
how to create two dimensional Array of type bool in C#
I have a matrix kind datagrid in my WPF application and
I would like to create a two dimensional Array to access the row and column of the datagrid. how to access the datagridcells using ...
0
votes
0answers
22 views
DataGrid inside a ComboBox in WPF
I want to place a DataGrid inside a ComboBox. And that ComboBox again inside a DataGrid. The reason behind placing DataGrid is to allow user to Sort records and to display multiple column with header. ...
0
votes
1answer
104 views
How to improve performance of WPF Grid control (.NET 4.0/4.5)?
Definition: Having 2D-array of string (about 10 columns, 1,600 rows, fixed length of 7-char) serving as a data source for WPF .NET 4.0 Grid control, the following code snippet has been used in order ...
0
votes
0answers
58 views
WPF C# datagrid fix view row (fix scroll)
i am working on WPF datagrid and want to fix view after insert row at top, whenever row insert at top view scroll down by 1 row, i am using following code
int i = 0;
DataTable dt = null;
...
-1
votes
2answers
84 views
Insert hyphen automatically after every 4 characters in a TextBox
I want to implement some thing that when a user enters 4 characters then a hyphen should be added to the text and then again user enter 4 characters and then again hypen should added automatically in ...
2
votes
1answer
78 views
how can i access the textbox inside the datagrid using the events of that datagrid?
I have a textbox in a datagrid that is designed using xaml. Can I access the textbox which has been designed in xaml previously in codefile using the events of the datagrid. Please help ...
0
votes
1answer
163 views
How to get selected cell value on DataGrid SelectedCellsChanged in wpf?
I want to get cell value on DataGrid selected cell Changed event in my wpf application.
Please anybody help me out of this.
0
votes
0answers
53 views
wpf checklistbox with Shift shortcut for multi selection
I would like to implement a wpf checklistbox with Shift/Ctrl shortcut for multi selection.
Got the following solution, but it can only multi select the TEXT area with Shift/Ctrl, in the
checkbox ...
0
votes
1answer
90 views
How to apply nested Styles from ResourceDictionary in WPF?
I use a DataGrid (WPF 4.0) control. The style for it is placed in a ResourceDictionary and contains a nested Style element:
<Style x:Key="MyDataGridStyle" TargetType="{x:Type ...
0
votes
1answer
70 views
DataGridCheckBoxColumn checkbox formatting
How do I add a 1-pixel top-margin to the checkbox in a DataGridCheckBoxColumn?
Any help in this regard would be greatly appreciated....
2
votes
1answer
339 views
Creating ItemTemplate for DataGrid with C#
Here is the XAML. I want to do the same thing with C#.
<DataGrid x:Name="myDataGrid">
<DataGrid.Columns>
<DataGridTemplateColumn Header="Address">
...
0
votes
0answers
40 views
WPF DataGrid to generate columns from a collection
I have a form where user lands by selecting some start and end date. So the form has to load with those many days in the users selection as grid columns. So How do i generate these columns == number ...
2
votes
1answer
79 views
set ItemTemplate for specific column of DataGrid
I have a WPF DataGrid and it is bound to List<Person> people.
public class Person
{
public string Name{get;set;}
public string LastName{get;set;}
public string Address{get;set;}
...
1
vote
2answers
120 views
Display datagrid details from the combobox selecteditem
I have a combobox and a datagrid in my application. The datagrid has its itemsSource from its collectionViewSource and there are three ComboBoxItem's in the combobox as warning/error/exception as ...
0
votes
0answers
50 views
cannot append a row to datagrid WPF
I scratched my head a lot and worked also, but still not able to add a row to a datagrid. I mean i cannot append, when ever i am adding a new row the previous data is going away and only tht one row ...
0
votes
2answers
304 views
add and retrive data from datagrid, WPF
I want to add data on button click to a datagrid. Suppose a datagrid with 3 headers, namely ITEM, QUANTITY, PRICE. Now when a user click for first time i shld get data in first row like this.
1 1 ...
0
votes
0answers
33 views
I added Expander and Grid controls to the Tab control and the controls are not getting resized along with main window
I added Expander and Grid controls to the Tab control and the controls are not getting resized along with main window though their width was set to "auto" Grid Alignment set to Stretch. How can i fix ...
0
votes
0answers
132 views
How do I add multiple controls dynamically to a DataGridTemplateColumn of a datagrid using wpf?
I need to add multiple controls to a DataGridTemplateColumn of a datagrid from code behind. It can be done using Xaml but i need to do it dynamically from code behind coz adding controls are based on ...
1
vote
1answer
233 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
0answers
106 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 ...
1
vote
2answers
77 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
1answer
39 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
312 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
1
vote
1answer
44 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
62 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 ...
-1
votes
1answer
59 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
35 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 ...
1
vote
1answer
606 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
178 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
130 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
2answers
383 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
393 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
528 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
90 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
vote
1answer
161 views
One ViewModel per View?
I am developing a UI application which displays 3 datagrids, each of them are dependent on each other(selectedItem binding)
This is what I have done so far:
datagrid1 has one Model and one ...
3
votes
4answers
173 views
SelectedItem of DataGrid
I am developing a User Interface for a host monitoring application, which is already being monitored on database level. I have displayed 2 datagrids on my UI which will populate on run time.These two ...
1
vote
0answers
72 views
Binding Row to Validation Rule WPF
I want to bind TextBox's Tag (which is inside a DataGrid), to validation rule's CurrentLegStrategy property (which is a DependencyProperty). Although I've done something similar with Deal dependency ...
2
votes
3answers
118 views
Access data from one Datagrid to another
I am developing a User Interface to view the student details from a student Database.
I have three datagrids in my application as follows:
The first datagrid at the left is for selecting the Student ...
0
votes
0answers
121 views
How to edit a datagrid when bind to xml in wpf?
I have a xml column that bind datagrid .I whant to add cels and delet and save.
a xml column table(column name xmldata):
<a>
<b c1="valu1" c2="valu2" c3="valu3" />
<b c1="valu4" ...
0
votes
1answer
334 views
Conditional Formatting of WPF DataGrid Cell Depending on DataType
I have a user control that inherits from the WPF DataGrid control and to which I pass different List of objects and, so, the columns of the grid depend (i.e. are automatically generated) on the class ...
1
vote
0answers
356 views
implement wpf gridview as same in the Metro style gridview
For my WPF application i'm trying to get windows 8 metro Gridview style in WPF. Here is my sample code of metro style Gridview design:
<DataTemplate x:Key="DashboardItemTemplate">
<Grid ...


