[NUI] Implement InnerShadow + Bind Control Borderline and remove relative codes.
Let we make property for InnerShadow.
It will be used when we want to render the shadow inset the view.
Also, Let we make Borderline as top of views, not to touch visual directly.
It will be rendered above the inner shadow now.
* How to use
UIExtents = Inset length of each direction's shadow.
BlurRadius = Radius of shadow. Same as BoxShadow usage.
Color = Color of shadow, Same as BoxShadow usage.
```cs
// InnerShadow for top-left
view.InnerShadow = new InnerShadow(new UIExtents(20.0f, 0.0f, 20.0f, 0.0f), blurRadius, color);
// InnerShadow for inset
view.InnerShadow = new InnerShadow(new UIExtents(20.0f), blurRadius, color);
```
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
13 files changed: