What event exist to datagrid [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What event exist to datagrid, that works when you change any data on datagrid?
in wpf

I think you are looking for the RowEditEnding event:
Reference: RowEditEnding

Here is a quick example
<DataGrid .... SelectionChanged="selection_changed" RowEditEnding="row_Editing" CellEditEnding="cel_Editing" >
their is a nice example on this link http://www.dotnetcurry.com/ShowArticle.aspx?ID=563

Related

Asp.Net program [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
What does the following line of code do
SqlDataSource DataSource =(SqlDataSource)CreateUserWizardStep1.
ContentTemplateContainer.FindControl("InsertExtraInfo");
MSDN can tell you:
http://msdn.microsoft.com/en-us/library/system.web.ui.control.findcontrol.aspx
It will find the control that is a child of ContentTemplateContainer, with the ID of InsertExtraInfo, and then cast it to SqlDataSource.
It simply says: "It uses FindControl to get the SqlDataSource then bind it to CreateUserWizard".

In C#/XAML/WPF, how do I make a button appear only if another button is clicked? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I was wondering how to do this. I am trying to learn how to make a Metro-style app for Windows Store.
Attach an Click event to the source button
In event handler mark `button2.Visibility = Visibility.Visible;'
As simple as that.

datagrid in wpf [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
how can I fill datagrid from datatable c# wpf?
Have you tried any code yet? If so best post a few snippets, and be specific about the problem's you're encountering.
If you haven't started yet I'd recommend googling/bingin' for such a question. There are plenty of tutorials, for example on codeplex:
http://www.codeproject.com/KB/WPF/WPFDataGridExamples.aspx
Good luck!

How to Create Tree View? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Hey guys, can anyone tell me about Treeview in C# 2008. How to bind it with an Sql Database?
Check this Example and this downloadble one with Databinding
Tree View MSDN article: http://msdn.microsoft.com/en-us/library/d4fz6xk2%28v=vs.80%29.aspx
this is a tree example but databinding with Access.

how to add checkbox control in DevExpress XtraTree List [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Hai,
Am using DevExpress Tree List in C#.NET application .I want to add checkbox control in DevExpress XtraTree List.Please help
Thank you.
You should set the column's ColumnEdit property to an instance of the RepositoryItemCheckEdit class. For more details, please refer to
http://documentation.devexpress.com/#WindowsForms/CustomDocument5632
http://documentation.devexpress.com/#WindowsForms/CustomDocument5633

Categories