summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/ViewInitializedEventArgs.cs
blob: e34a493e91a74a72ffb21456b0ff9731844d6f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
#if __UNIFIED__
using UIKit;

#else
using MonoTouch.UIKit;
#endif

namespace Xamarin.Forms
{
	public class ViewInitializedEventArgs : EventArgs
	{
		public UIView NativeView { get; internal set; }

		public VisualElement View { get; internal set; }
	}
}