[NUI] introduce CreateViewStyle that is alternative to GetViewStyle (#1681)
authorYeongJong Lee <cleanlyj@naver.com>
Wed, 10 Jun 2020 08:08:39 +0000 (17:08 +0900)
committerGitHub <noreply@github.com>
Wed, 10 Jun 2020 08:08:39 +0000 (17:08 +0900)
commit61bbf8a867357831237d10904937be267adda1d3
tree222e009c7d8c194750fd1efb426e572484b02999
parent1459d7117fcb1468aafeec63e6a7a3e10d025c73
[NUI] introduce CreateViewStyle that is alternative to GetViewStyle (#1681)

`CreateViewStyle` is alternative method of `GetViewStyle`.
To resolve CA1721, please use `CreateViewStyle` instead.
```
warning CA1721: The property name 'ViewStyle' is confusing given the existence of
method 'GetViewStyle'. Rename or remove one of these members.
```

`GetViewStyle` should be deprecated(or removed) if there is no
compatibility issue.
20 files changed:
src/Tizen.NUI.Components/Controls/Button.cs
src/Tizen.NUI.Components/Controls/Control.cs
src/Tizen.NUI.Components/Controls/DropDown.cs
src/Tizen.NUI.Components/Controls/FlexibleView/FlexibleView.cs
src/Tizen.NUI.Components/Controls/ImageScrollBar.cs
src/Tizen.NUI.Components/Controls/Loading.cs
src/Tizen.NUI.Components/Controls/Pagination.cs
src/Tizen.NUI.Components/Controls/Popup.cs
src/Tizen.NUI.Components/Controls/Progress.cs
src/Tizen.NUI.Components/Controls/Scrollbar.cs
src/Tizen.NUI.Components/Controls/Slider.cs
src/Tizen.NUI.Components/Controls/Switch.cs
src/Tizen.NUI.Components/Controls/Tab.cs
src/Tizen.NUI.Components/Controls/Toast.cs
src/Tizen.NUI.Wearable/src/public/CircularPagination.cs
src/Tizen.NUI.Wearable/src/public/CircularProgress.cs
src/Tizen.NUI.Wearable/src/public/CircularScrollbar.cs
src/Tizen.NUI.Wearable/src/public/CircularSlider.cs
src/Tizen.NUI.Wearable/src/public/Popup.cs
src/Tizen.NUI/src/public/BaseComponents/View.cs