mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-24 00:36:41 +08:00
20 lines
543 B
C#
20 lines
543 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace HZH_Controls.Controls
|
|
{
|
|
public class TransferEventArgs : EventArgs
|
|
{
|
|
public object[] TransferDataSource { get; set; }
|
|
/// <summary>
|
|
/// true:right false:left
|
|
/// </summary>
|
|
/// <value><c>true</c> if [to right or left]; otherwise, <c>false</c>.</value>
|
|
public bool ToRightOrLeft { get; set; }
|
|
}
|
|
public delegate void TransferEventHandler(object sender,TransferEventArgs e);
|
|
|
|
}
|