Browse By Tags

  • Forum Post: C1DataGrid - How to check if user is on NewRow

    I can't seem to find a way to check when the User is on the NewRow. I am listening to the SelectionChanged event because I need to do some business logic when the user changes rows. I was reading the documentation, and noticed the class, DataGridNewRow, but don't know how to read it. Any advice...
  • Forum Post: When using EntitySet C1DataGrid is missing the NewRow even CanUserAddRows is true

    I have a Silverlight application which uses WCF RIA to get data from server. Server returns collection of custom objects and I would like to display them in C1DataGrid with create/update/delete functionality. When I get the data from server, I know two ways to use them: 1) LoadOperation.Entities which...
  • Forum Post: Re: DataGrid Vertical Scroll Bar invisible when background set to Transparent

    Hi Greg, The row headers are totally transparent in fact, you're seeing the color behind. What about using a semitransparent color instead? Regards, Alvaro.
  • Forum Post: Re: C1DataGrid ClearStyle

    therealtkd: Well it happened. It was always my concern with XAML that in order to get the look I wanted on a control, I have to modify the templates and that if the control was updated later on, it would break. Converting to latest version of the C1 SL components has broken all my datagrids. :-( Do you...
  • Forum Post: Re: C1DataGrid CanUserFilter

    Hi Jeff, You're right, it's a bug. It will be fixed in the next release. Sorry for the inconveniences, Regards, Alvaro.
  • Wiki Page: How can I determine which cell is under the mouse?

    Use the GetCellFromPoint method to find the cell under the mouse. Here is a code example which displays cell information relative to the mouse position: private void c1DataGrid1_MouseMove(object sender, MouseEventArgs e) { DataGridCell cell = c1DataGrid1.GetCellFromPoint(e.GetPosition(c1DataGrid1));...
  • Wiki Page: How to set and retrieve the value of a cell in C1DataGrid for WPF?

    Applies To: DataGrid for WPF Published On: 8/21/2008 Updated On: 8/18/2010 New DataGrid (C1.WPF.DataGrid.C1DataGrid) Here is a code snippet for retrieving the text of the currently selected cell: DataGridCell cell = c1DataGrid1.CurrentCell; MessageBox.Show(cell.Text); To set the value of a cell you should...
  • Wiki Page: How can I change the color of a cell based upon the value?

    Conditional Formatting To set the background color to red for values matching a certain criteria, for example, this is handled best in code. In the LoadedCellPresenter event, you can run your logic and apply your formatting. In this small example we apply a red background brush to all products with a...
  • Wiki Page: DataGrid for WPF FAQs

    ComponentOne DataGrid for WPF FAQs
  • Blog Post: New DataGrid for WPF

    Times are changing and so is Studio for WPF. In addition to the new C1FlexGrid control we've just ported the existing C1DataGrid from Studio for Silverlight to WPF in the 2010 v2 release. Back in 2007 we introduced the original C1DataGrid control for WPF which was heavily designer inspired. It had...
  • Blog Post: Handling Large Data Sets with C1DataGrid and C1Chart

    Most Silverlight applications access data from web services. The problems we face is that sometimes the UI controls perform poorly when handling large amounts of data, whether you're using a listbox, datagrid, chart, etc, and it also becomes impractical to try and send really large amounts of data...
  • Blog Post: Creating a Master-Detail View with C1DataGrid

    Introduction When displaying data, one of the most important aspects to consider is how you can make the data meaningful -- how can you show how the data interrelates? While a massive grid layout showing one record after another might help visualize data, it does nothing when it comes to explaining why...
  • Blog Post: Creating custom columns in C1DataGrid for Silverlight

    ComponentOne DataGrid for Silverlight supports creating specific behavior columns. For example you can create a Hyperlink column, a GIF column, a Rich Text column, and so on. By creating a custom column you'll be able to customize the cell content and editing content of all the cells belonging to...
  • Blog Post: New Feature Spotlight: Silverlight DataGrid

    Applies To: DataGrid for Silverlight Author: Suelinda Webster Published On: 4/7/2009 ComponentOne DataGrid for Silverlight is even better for 2009 with three new features to enhance your data visualization applications. Now you can easily add Microsoft Outlook-style grouping , DateTime Columns , and...
Page 1 of 120 (2,400 items) 12345»