From: jh5.cho Date: Thu, 23 Mar 2017 07:47:08 +0000 (+0900) Subject: [DropdownList] Add missing document for Event X-Git-Tag: accepted/tizen/ivi/20170324.024757~7^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23505041bea02cc5a18210f17de2e0daf5d4efd7;p=platform%2Fcore%2Fcsapi%2Fxamarin-forms-extension.git [DropdownList] Add missing document for Event Change-Id: Idcd30fc3492b3b38bb635b84e97252728f9fb616 --- diff --git a/Tizen.Xamarin.Forms.Extension/DropdownList.cs b/Tizen.Xamarin.Forms.Extension/DropdownList.cs index ac771da..80d9107 100755 --- a/Tizen.Xamarin.Forms.Extension/DropdownList.cs +++ b/Tizen.Xamarin.Forms.Extension/DropdownList.cs @@ -38,6 +38,9 @@ namespace Tizen.Xamarin.Forms.Extension public static readonly BindableProperty DisplayMemberPathProperty = BindableProperty.Create("DisplayMemberPath", typeof(string), typeof(DropdownList), default(string), propertyChanged: OnDisplayMemberPathChanged); + /// + /// Occurs when an item in the DropdownList is selected. + /// public event EventHandler ItemSelected; internal IEnumerable InternalItems => _items;