From 42347b5a4e3c6e1eb6831c819d63b0be9117485b Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Thu, 3 Dec 2020 18:26:08 +0900 Subject: [PATCH] [NUI] Fix CA1710, change name with with the correct suffix --- .../{ItemContainer.cs => ItemCollection.cs} | 48 +++++++++++----------- .../{ItemIdContainer.cs => ItemIdCollection.cs} | 48 +++++++++++----------- src/Tizen.NUI/src/internal/ItemView.cs | 12 +++--- src/Tizen.NUI/src/public/GLWindowEvent.cs | 8 ++-- src/Tizen.NUI/src/public/WindowEvent.cs | 16 ++++---- 5 files changed, 66 insertions(+), 66 deletions(-) rename src/Tizen.NUI/src/internal/{ItemContainer.cs => ItemCollection.cs} (90%) rename src/Tizen.NUI/src/internal/{ItemIdContainer.cs => ItemIdCollection.cs} (91%) diff --git a/src/Tizen.NUI/src/internal/ItemContainer.cs b/src/Tizen.NUI/src/internal/ItemCollection.cs similarity index 90% rename from src/Tizen.NUI/src/internal/ItemContainer.cs rename to src/Tizen.NUI/src/internal/ItemCollection.cs index 23a96a3..9583a5a 100755 --- a/src/Tizen.NUI/src/internal/ItemContainer.cs +++ b/src/Tizen.NUI/src/internal/ItemCollection.cs @@ -22,15 +22,15 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public class ItemContainer : Disposable, global::System.Collections.IEnumerable, + public class ItemCollection : Disposable, global::System.Collections.IEnumerable, global::System.Collections.Generic.IEnumerable { - internal ItemContainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn) + internal ItemCollection(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn) { } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ItemContainer obj) + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ItemCollection obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } @@ -44,7 +44,7 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainer(global::System.Collections.ICollection c) : this() + public ItemCollection(global::System.Collections.ICollection c) : this() { if (c == null) throw new global::System.ArgumentNullException(nameof(c)); @@ -160,19 +160,19 @@ namespace Tizen.NUI global::System.Collections.Generic.IEnumerator global::System.Collections.Generic.IEnumerable.GetEnumerator() { - return new ItemContainerEnumerator(this); + return new ItemCollectionEnumerator(this); } global::System.Collections.IEnumerator global::System.Collections.IEnumerable.GetEnumerator() { - return new ItemContainerEnumerator(this); + return new ItemCollectionEnumerator(this); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainerEnumerator GetEnumerator() + public ItemCollectionEnumerator GetEnumerator() { - return new ItemContainerEnumerator(this); + return new ItemCollectionEnumerator(this); } // The type-safe enumerator. @@ -182,17 +182,17 @@ namespace Tizen.NUI /// tricky to detect unmanaged code that modifies the collection under our feet. /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public sealed class ItemContainerEnumerator : global::System.Collections.IEnumerator, + public sealed class ItemCollectionEnumerator : global::System.Collections.IEnumerator, global::System.Collections.Generic.IEnumerator { - private ItemContainer collectionRef; + private ItemCollection collectionRef; private int currentIndex; private object currentObject; private int currentSize; /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainerEnumerator(ItemContainer collection) + public ItemCollectionEnumerator(ItemCollection collection) { collectionRef = collection; currentIndex = -1; @@ -303,21 +303,21 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainer() : this(Interop.ItemContainer.NewItemContainer(), true) + public ItemCollection() : this(Interop.ItemContainer.NewItemContainer(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainer(ItemContainer other) : this(Interop.ItemContainer.NewItemContainer(ItemContainer.getCPtr(other)), true) + public ItemCollection(ItemCollection other) : this(Interop.ItemContainer.NewItemContainer(ItemCollection.getCPtr(other)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainer(int capacity) : this(Interop.ItemContainer.NewItemContainer(capacity), true) + public ItemCollection(int capacity) : this(Interop.ItemContainer.NewItemContainer(capacity), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -344,18 +344,18 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void AddRange(ItemContainer values) + public void AddRange(ItemCollection values) { - Interop.ItemContainer.AddRange(swigCPtr, ItemContainer.getCPtr(values)); + Interop.ItemContainer.AddRange(swigCPtr, ItemCollection.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemContainer GetRange(int index, int count) + public ItemCollection GetRange(int index, int count) { global::System.IntPtr cPtr = Interop.ItemContainer.GetRange(swigCPtr, index, count); - ItemContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemContainer(cPtr, true); + ItemCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemCollection(cPtr, true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -370,9 +370,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void InsertRange(int index, ItemContainer values) + public void InsertRange(int index, ItemCollection values) { - Interop.ItemContainer.InsertRange(swigCPtr, index, ItemContainer.getCPtr(values)); + Interop.ItemContainer.InsertRange(swigCPtr, index, ItemCollection.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -394,10 +394,10 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public static ItemContainer Repeat(Item value, int count) + public static ItemCollection Repeat(Item value, int count) { global::System.IntPtr cPtr = Interop.ItemContainer.Repeat(Item.getCPtr(value), count); - ItemContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemContainer(cPtr, true); + ItemCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemCollection(cPtr, true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -420,9 +420,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void SetRange(int index, ItemContainer values) + public void SetRange(int index, ItemCollection values) { - Interop.ItemContainer.SetRange(swigCPtr, index, ItemContainer.getCPtr(values)); + Interop.ItemContainer.SetRange(swigCPtr, index, ItemCollection.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } } diff --git a/src/Tizen.NUI/src/internal/ItemIdContainer.cs b/src/Tizen.NUI/src/internal/ItemIdCollection.cs similarity index 91% rename from src/Tizen.NUI/src/internal/ItemIdContainer.cs rename to src/Tizen.NUI/src/internal/ItemIdCollection.cs index 6329ac7..58a25d7 100755 --- a/src/Tizen.NUI/src/internal/ItemIdContainer.cs +++ b/src/Tizen.NUI/src/internal/ItemIdCollection.cs @@ -21,15 +21,15 @@ namespace Tizen.NUI { /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public class ItemIdContainer : Disposable, global::System.Collections.IEnumerable, + public class ItemIdCollection : Disposable, global::System.Collections.IEnumerable, global::System.Collections.Generic.IList { - internal ItemIdContainer(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn) + internal ItemIdCollection(global::System.IntPtr cPtr, bool cMemoryOwn) : base(cPtr, cMemoryOwn) { } - internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ItemIdContainer obj) + internal static global::System.Runtime.InteropServices.HandleRef getCPtr(ItemIdCollection obj) { return (obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr; } @@ -43,7 +43,7 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainer(global::System.Collections.ICollection c) : this() + public ItemIdCollection(global::System.Collections.ICollection c) : this() { if (c == null) throw new global::System.ArgumentNullException(nameof(c)); @@ -159,19 +159,19 @@ namespace Tizen.NUI global::System.Collections.Generic.IEnumerator global::System.Collections.Generic.IEnumerable.GetEnumerator() { - return new ItemIdContainerEnumerator(this); + return new ItemIdCollectionEnumerator(this); } global::System.Collections.IEnumerator global::System.Collections.IEnumerable.GetEnumerator() { - return new ItemIdContainerEnumerator(this); + return new ItemIdCollectionEnumerator(this); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainerEnumerator GetEnumerator() + public ItemIdCollectionEnumerator GetEnumerator() { - return new ItemIdContainerEnumerator(this); + return new ItemIdCollectionEnumerator(this); } // The type-safe enumerator. @@ -181,17 +181,17 @@ namespace Tizen.NUI /// tricky to detect unmanaged code that modifies the collection under our feet. /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public sealed class ItemIdContainerEnumerator : global::System.Collections.IEnumerator + public sealed class ItemIdCollectionEnumerator : global::System.Collections.IEnumerator , global::System.Collections.Generic.IEnumerator { - private ItemIdContainer collectionRef; + private ItemIdCollection collectionRef; private int currentIndex; private object currentObject; private int currentSize; /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainerEnumerator(ItemIdContainer collection) + public ItemIdCollectionEnumerator(ItemIdCollection collection) { collectionRef = collection; currentIndex = -1; @@ -302,21 +302,21 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainer() : this(Interop.ItemIdContainer.NewItemIdContainer(), true) + public ItemIdCollection() : this(Interop.ItemIdContainer.NewItemIdContainer(), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainer(ItemIdContainer other) : this(Interop.ItemIdContainer.NewItemIdContainer(ItemIdContainer.getCPtr(other)), true) + public ItemIdCollection(ItemIdCollection other) : this(Interop.ItemIdContainer.NewItemIdContainer(ItemIdCollection.getCPtr(other)), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainer(int capacity) : this(Interop.ItemIdContainer.NewItemIdContainer(capacity), true) + public ItemIdCollection(int capacity) : this(Interop.ItemIdContainer.NewItemIdContainer(capacity), true) { if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -343,18 +343,18 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void AddRange(ItemIdContainer values) + public void AddRange(ItemIdCollection values) { - Interop.ItemIdContainer.AddRange(swigCPtr, ItemIdContainer.getCPtr(values)); + Interop.ItemIdContainer.AddRange(swigCPtr, ItemIdCollection.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public ItemIdContainer GetRange(int index, int count) + public ItemIdCollection GetRange(int index, int count) { global::System.IntPtr cPtr = Interop.ItemIdContainer.GetRange(swigCPtr, index, count); - ItemIdContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemIdContainer(cPtr, true); + ItemIdCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemIdCollection(cPtr, true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -369,9 +369,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void InsertRange(int index, ItemIdContainer values) + public void InsertRange(int index, ItemIdCollection values) { - Interop.ItemIdContainer.InsertRange(swigCPtr, index, ItemIdContainer.getCPtr(values)); + Interop.ItemIdContainer.InsertRange(swigCPtr, index, ItemIdCollection.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -393,10 +393,10 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public static ItemIdContainer Repeat(uint value, int count) + public static ItemIdCollection Repeat(uint value, int count) { global::System.IntPtr cPtr = Interop.ItemIdContainer.Repeat(value, count); - ItemIdContainer ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemIdContainer(cPtr, true); + ItemIdCollection ret = (cPtr == global::System.IntPtr.Zero) ? null : new ItemIdCollection(cPtr, true); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } @@ -419,9 +419,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void SetRange(int index, ItemIdContainer values) + public void SetRange(int index, ItemIdCollection values) { - Interop.ItemIdContainer.SetRange(swigCPtr, index, ItemIdContainer.getCPtr(values)); + Interop.ItemIdContainer.SetRange(swigCPtr, index, ItemIdCollection.getCPtr(values)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/src/Tizen.NUI/src/internal/ItemView.cs b/src/Tizen.NUI/src/internal/ItemView.cs index aa37389..4d0d461 100755 --- a/src/Tizen.NUI/src/internal/ItemView.cs +++ b/src/Tizen.NUI/src/internal/ItemView.cs @@ -396,9 +396,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void InsertItems(ItemContainer newItems, float durationSeconds) + public void InsertItems(ItemCollection newItems, float durationSeconds) { - Interop.ItemView.InsertItems(swigCPtr, ItemContainer.getCPtr(newItems), durationSeconds); + Interop.ItemView.InsertItems(swigCPtr, ItemCollection.getCPtr(newItems), durationSeconds); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -412,9 +412,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void RemoveItems(ItemIdContainer itemIds, float durationSeconds) + public void RemoveItems(ItemIdCollection itemIds, float durationSeconds) { - Interop.ItemView.RemoveItems(swigCPtr, ItemIdContainer.getCPtr(itemIds), durationSeconds); + Interop.ItemView.RemoveItems(swigCPtr, ItemIdCollection.getCPtr(itemIds), durationSeconds); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } @@ -428,9 +428,9 @@ namespace Tizen.NUI /// This will be public opened in next tizen after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] - public void ReplaceItems(ItemContainer replacementItems, float durationSeconds) + public void ReplaceItems(ItemCollection replacementItems, float durationSeconds) { - Interop.ItemView.ReplaceItems(swigCPtr, ItemContainer.getCPtr(replacementItems), durationSeconds); + Interop.ItemView.ReplaceItems(swigCPtr, ItemCollection.getCPtr(replacementItems), durationSeconds); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); } diff --git a/src/Tizen.NUI/src/public/GLWindowEvent.cs b/src/Tizen.NUI/src/public/GLWindowEvent.cs index 3b133fe..3056f1e 100755 --- a/src/Tizen.NUI/src/public/GLWindowEvent.cs +++ b/src/Tizen.NUI/src/public/GLWindowEvent.cs @@ -368,7 +368,7 @@ namespace Tizen.NUI /// VisibilityChangedArgs /// [EditorBrowsable(EditorBrowsableState.Never)] - public class VisibilityChangedArgs : EventArgs + public class VisibilityChangedEventArgs : EventArgs { private bool _visibility; /// @@ -393,7 +393,7 @@ namespace Tizen.NUI return; } - VisibilityChangedArgs e = new VisibilityChangedArgs(); + VisibilityChangedEventArgs e = new VisibilityChangedEventArgs(); e.Visibility = visibility; if (VisibilityChangedEventHandler != null) { @@ -404,14 +404,14 @@ namespace Tizen.NUI [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate void GLVisibilityChangedEventCallbackType(IntPtr window, bool visibility); private GLVisibilityChangedEventCallbackType _GLVisibilityChangedEventCallback; - private event EventHandler VisibilityChangedEventHandler; + private event EventHandler VisibilityChangedEventHandler; private GLWindowVisibilityChangedEvent _GLVisibilityChangedEventSignal; /// /// EffectStart /// [EditorBrowsable(EditorBrowsableState.Never)] - public event EventHandler VisibilityChanged + public event EventHandler VisibilityChanged { add { diff --git a/src/Tizen.NUI/src/public/WindowEvent.cs b/src/Tizen.NUI/src/public/WindowEvent.cs index 25940fb..b6ee9ad 100755 --- a/src/Tizen.NUI/src/public/WindowEvent.cs +++ b/src/Tizen.NUI/src/public/WindowEvent.cs @@ -245,7 +245,7 @@ namespace Tizen.NUI /// EffectStart /// [EditorBrowsable(EditorBrowsableState.Never)] - public event EventHandler TransitionEffect + public event EventHandler TransitionEffect { add { @@ -305,7 +305,7 @@ namespace Tizen.NUI private event EventHandler _stageEventProcessingFinishedEventHandler; private event EventHandler _windowResizeEventHandler; private event EventHandler _windowFocusChangedEventHandler2; - private event EventHandler transitionEffectHandler; + private event EventHandler transitionEffectHandler; private event EventHandler keyboardRepeatSettingsChangedHandler; internal void SendViewAdded(View view) @@ -740,7 +740,7 @@ namespace Tizen.NUI return; } - TransitionEffectArgs e = new TransitionEffectArgs(); + TransitionEffectEventArgs e = new TransitionEffectEventArgs(); e.State = (EffectStates)state; @@ -943,7 +943,7 @@ namespace Tizen.NUI /// TransitionEffectArgs /// [EditorBrowsable(EditorBrowsableState.Never)] - public class TransitionEffectArgs : EventArgs + public class TransitionEffectEventArgs : EventArgs { private EffectStates state; private EffectTypes type; @@ -1003,7 +1003,7 @@ namespace Tizen.NUI /// VisibilityChangedArgs /// [EditorBrowsable(EditorBrowsableState.Never)] - public class VisibilityChangedArgs : EventArgs + public class VisibilityChangedEventArgs : EventArgs { private bool visibility; /// @@ -1028,7 +1028,7 @@ namespace Tizen.NUI return; } - VisibilityChangedArgs e = new VisibilityChangedArgs(); + VisibilityChangedEventArgs e = new VisibilityChangedEventArgs(); e.Visibility = visibility; if (VisibilityChangedEventHandler != null) { @@ -1039,14 +1039,14 @@ namespace Tizen.NUI [UnmanagedFunctionPointer(CallingConvention.StdCall)] private delegate void VisibilityChangedEventCallbackType(IntPtr window, bool visibility); private VisibilityChangedEventCallbackType VisibilityChangedEventCallback; - private event EventHandler VisibilityChangedEventHandler; + private event EventHandler VisibilityChangedEventHandler; private WindowVisibilityChangedEvent VisibilityChangedEventSignal; /// /// EffectStart /// [EditorBrowsable(EditorBrowsableState.Never)] - public event EventHandler VisibilityChanged + public event EventHandler VisibilityChanged { add { -- 2.7.4