-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from Astone/order-changed-event
Add OrderChanged event to DataGrid
- Loading branch information
Showing
5 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
src/MyToolkit.Extended/Controls/DataGrid/DataGridColumnEventArgs.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
//----------------------------------------------------------------------- | ||
// <copyright file="DataGridColumnEventArgs.cs" company="MyToolkit"> | ||
// Copyright (c) Bram Stoeller. All rights reserved. | ||
// </copyright> | ||
// <license>https://github.com/MyToolkit/MyToolkit/blob/master/LICENSE.md</license> | ||
// <author>Bram Stoeller, [email protected]</author> | ||
//----------------------------------------------------------------------- | ||
|
||
#if WINRT | ||
|
||
using MyToolkit.Controls; | ||
using System; | ||
|
||
namespace MyToolkit.Controls | ||
{ | ||
public class DataGridColumnEventArgs : EventArgs | ||
{ | ||
internal DataGridColumnEventArgs(DataGridColumnBase column) | ||
{ | ||
Column = column; | ||
} | ||
|
||
/// <summary>Gets ordering column. </summary> | ||
public DataGridColumnBase Column { private set; get; } | ||
|
||
} | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters