Skip to content

Commit

Permalink
improvements in FluentListView
Browse files Browse the repository at this point in the history
  • Loading branch information
robinrodricks committed Jun 6, 2019
1 parent 2d4738a commit 55cce19
Show file tree
Hide file tree
Showing 40 changed files with 1,352 additions and 1,168 deletions.
1 change: 1 addition & 0 deletions FluentListView/CellEditing/CellEditKeyEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
using System.Text;
using System.Windows.Forms;
using Fluent;
using Fluent.Lists;

namespace Fluent {
/// <summary>
Expand Down
1 change: 1 addition & 0 deletions FluentListView/CellEditing/CellEditors.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
using System.Drawing;
using System.Reflection;
using System.Windows.Forms;
using Fluent.Lists;

namespace Fluent
{
Expand Down
1 change: 1 addition & 0 deletions FluentListView/DragDrop/DragSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using Fluent.Lists;

namespace Fluent
{
Expand Down
1 change: 1 addition & 0 deletions FluentListView/DragDrop/DropSink.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;
using Fluent.Lists;

namespace Fluent
{
Expand Down
1 change: 1 addition & 0 deletions FluentListView/DragDrop/OLVDataObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
using System;
using System.Collections;
using System.Windows.Forms;
using Fluent.Lists;

namespace Fluent {

Expand Down
1 change: 1 addition & 0 deletions FluentListView/Filtering/FilterMenuBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
using System.Windows.Forms;
using System.Collections;
using System.Drawing;
using Fluent.Lists;

namespace Fluent {

Expand Down
1 change: 1 addition & 0 deletions FluentListView/Filtering/Filters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
using System.Data;
using System.Reflection;
using System.Drawing;
using Fluent.Lists;

namespace Fluent
{
Expand Down
1 change: 1 addition & 0 deletions FluentListView/Filtering/TextMatchFilter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
using System.Text;
using System.Text.RegularExpressions;
using System.Drawing;
using Fluent.Lists;

namespace Fluent {

Expand Down
21 changes: 21 additions & 0 deletions FluentListView/FluentListProperties.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Fluent {
public class FluentListProperties {

public string Name { get; set; }

public string Description { get; set; }

public string Icon { get; set; }

public List<string> Columns { get; set; }

public string GroupBy { get; set; }



}
}
1 change: 1 addition & 0 deletions FluentListView/FluentListView.DesignTime.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
using System.Reflection;
using System.Windows.Forms;
using System.Windows.Forms.Design;
using Fluent.Lists;

namespace Fluent.Design
{
Expand Down
Loading

0 comments on commit 55cce19

Please sign in to comment.