mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
34 lines
454 B
C#
34 lines
454 B
C#
using CPF.Mac.CoreGraphics;
|
|
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
public class NSTextViewDraggedCellEventArgs : EventArgs
|
|
{
|
|
public NSTextAttachmentCell Cell
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public CGRect Rect
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSEvent Theevent
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSTextViewDraggedCellEventArgs(NSTextAttachmentCell cell, CGRect rect, NSEvent theevent)
|
|
{
|
|
Cell = cell;
|
|
Rect = rect;
|
|
Theevent = theevent;
|
|
}
|
|
}
|
|
}
|