Excel like spreadsheet control

From , 4 Years ago, written in C#, viewed 51 times.
URL https://pastebin.vip/view/d89a66c7
  1. //GridForm.cs
  2.  
  3. /*****************************************************************************
  4.  *
  5.  * ReoGrid - .NET Spreadsheet Control
  6.  *
  7.  * http://reogrid.codeplex.com/
  8.  *
  9.  * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  10.  * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  11.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  12.  * PURPOSE.
  13.  *
  14.  * This software released under LGPLv3 license.
  15.  * Author: Jing Lu <dujid0 at gmail.com>
  16.  *
  17.  * Copyright (c) 2012-2014 unvell.com, all rights reserved.
  18.  *
  19.  ****************************************************************************/
  20.  
  21. using System;
  22. using System.Collections.Generic;
  23. using System.ComponentModel;
  24. using System.Data;
  25. using System.Drawing;
  26. using System.Linq;
  27. using System.Text;
  28. using System.Windows.Forms;
  29.  
  30. namespace unvell.ReoGrid.Demo
  31. {
  32.         public partial class GridForm : Form
  33.         {
  34.                 public GridForm()
  35.                 {
  36.                         InitializeComponent();
  37.                 }
  38.  
  39.                 public void Open(string file, Action<ReoGridControl> postHandler)
  40.                 {
  41. #if DEBUG
  42.                         grid.Load(System.IO.Path.Combine("..\\..\\..\\Samples", file));
  43. #else
  44.                         grid.Load(file);
  45. #endif
  46.  
  47.                         if (postHandler != null) postHandler(grid);
  48.                 }
  49.         }
  50. }
  51.  

Reply to "Excel like spreadsheet control"

Here you can reply to the paste above

captcha

https://burned.cc - Burn After Reading Website