summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/ViewInitializedEventArgs.cs
blob: 9ee0da88c01d36549c3761b0eb15b6e19c9599b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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; }
	}
}