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
Related
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.
I already have the drag and drop working well. I just need to know is there a way to identify which listbox the dragged item is from?.
Thanks,
Try using this, i don't think is the best solution but it should work
foreach (ListBox _LB in this.Controls.OfType<ListBox>())
{
if(_LB.Items.Contains(listBox1.SelectedItem))
{
MessageBox.Show(_LB.Name);
}
}
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".
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
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.
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 12 years ago.
I am fetching data from database and i am showing it in multiple select box but i want to show location 1,3,5 items should be selected by default. How?
Bind the Listbox to the datasource. A google search will probably be helpful.
If you mean "how do I select specific items", then this so question will help.
In WPF, you can use the ListBox control.