mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
26 lines
291 B
C#
26 lines
291 B
C#
using System;
|
|
|
|
namespace CPF.Mac.AppKit
|
|
{
|
|
public class NSImagePartialEventArgs : EventArgs
|
|
{
|
|
public NSImageRep Rep
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public long Rows
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NSImagePartialEventArgs(NSImageRep rep, long rows)
|
|
{
|
|
Rep = rep;
|
|
Rows = rows;
|
|
}
|
|
}
|
|
}
|