|
Query |
Response |
|
Do you have some crud samples to give me some ideas with master detail look |
SfDataGrid does have the support to perform the CRUD operations. If you bound ObservableCollection or BindingList with SfDataGrid, the changes will be reflected automatically. If you bind the other collection with SfDataGrid, you could use the View.Refresh method to update the changes. Please refer the following cod example,
Code example
This.sfDataGrid1.View.Refresh();
We have prepared the SfDataGrid sample for CRUD operations with Observable collection as the underlying dataSource. Please refer the following sample,
Sample Location : http://www.syncfusion.com/downloads/support/directtrac/general/ze/CS_SfDataGrid1290925010
Please refer the following UG link to know about the SfDataGrid,
DataBinding
Data Manipulation
MasterDetail
|
|
Office 365 look |
To change the Form like Office365 look and feel, you could customize the caption bar using Style.TitleBar property. Please refer the following UG link,
Color codes for Office 365,
Colorful
this.Style.TitleBar.BackColor = Color.FromArgb(16, 110, 190);
Black
this.Style.TitleBar.BackColor = Color.FromArgb(38, 38, 38);
White
this.Style.TitleBar.BackColor = Color.FromArgb(255, 255, 255);
DarkGray
this.Style.TitleBar.BackColor = Color.FromArgb(102, 102, 102);
|
|
How I can convert to Sfform or do I have to use metro style form.
Can you send me some samples please
|
To use the SfForm, you could use the Syncfusion.Core.Winforms.dll and Syncfusion.WinForms.Controls namespace in your project.
Please refer the below UG link to know about the SfForm,
We suggest to use the SfForm because our SfForm is more effective to use compare than MetroForm. |
|
Also sample with touch support are welcome. |
By default, SfDataGrid does have touch support for resizing, sorting, filtering, (etc).
Please refer the following UG link to know about the touch support
|