зеркало из https://github.com/DeGsoft/maui-linux.git
17 строки
304 B
C#
17 строки
304 B
C#
using System;
|
|
#if __MOBILE__
|
|
using TNativeView = UIKit.UIView;
|
|
#else
|
|
using TNativeView = AppKit.NSView;
|
|
|
|
#endif
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public class ViewInitializedEventArgs : EventArgs
|
|
{
|
|
public TNativeView NativeView { get; internal set; }
|
|
|
|
public VisualElement View { get; internal set; }
|
|
}
|
|
} |