diff options
author | Heonjae Jang <heonjae.jang@samsung.com> | 2017-05-08 20:06:36 +0900 |
---|---|---|
committer | ChulSeung Kim <charles0.kim@samsung.com> | 2017-06-08 18:34:54 +0900 |
commit | 142c8fce67df50283db3654a798ee3e0b487ec6a (patch) | |
tree | 3e8a4f8200e0c61cb8e920e64a90a8f32bdf102c /TVHome | |
parent | c8a859b3e0b9e7a38a908eb1f0c82d42d47e787d (diff) | |
download | home-142c8fce67df50283db3654a798ee3e0b487ec6a.tar.gz home-142c8fce67df50283db3654a798ee3e0b487ec6a.tar.bz2 home-142c8fce67df50283db3654a798ee3e0b487ec6a.zip |
Change Apps Layout
Change-Id: Ic9e1ef201a26d7806267376a132cc32a48b24b12
Signed-off-by: Heonjae Jang <heonjae.jang@samsung.com>
Diffstat (limited to 'TVHome')
-rwxr-xr-x | TVHome/TVHome/Controls/SubPanelThumbnailButton.xaml.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/TVHome/TVHome/Controls/SubPanelThumbnailButton.xaml.cs b/TVHome/TVHome/Controls/SubPanelThumbnailButton.xaml.cs index 5488d3c..e67244d 100755 --- a/TVHome/TVHome/Controls/SubPanelThumbnailButton.xaml.cs +++ b/TVHome/TVHome/Controls/SubPanelThumbnailButton.xaml.cs @@ -120,19 +120,6 @@ namespace TVHome.Controls { OnFocusedCommand.Execute(""); } - // Height, Width 확장 Animiation - //var Animation = new Animation(); - //var viewHeightAnimation = new Animation(v => View.HeightRequest = v, 180, 216); - //var viewWidthAnimation = new Animation(v => View.WidthRequest = v, 320, 384); - //var imageWidthAnimation = new Animation(v => ThumbnailImage.Scale = v, 1, 1.2); - //var imagePositionAnimation = new Animation(v => ThumbnailImage.TranslationX = v, 0, 32); - //var titleAnimation = new Animation(v => ThumbnailTitle.Opacity = v, 0, 0.99); - //Animation.Add(0, 1, viewHeightAnimation); - //Animation.Add(0, 1, viewWidthAnimation); - //Animation.Add(0, 1, imageWidthAnimation); - //Animation.Add(0, 1, imagePositionAnimation); - //Animation.Add(0, 1, titleAnimation); - //Animation.Commit(ThumbnailTitle, "FocusedAnimation", 16, 300); #pragma warning disable CS4014 ThumbnailGradient.Source = "ic_list_thumbnail_gradient_focused.9.png"; @@ -151,20 +138,6 @@ namespace TVHome.Controls public override async void OnUnfocused(object sender, FocusEventArgs e) { isFocused = false; - // Height, Width 확장 Animiation - //var Animation = new Animation(); - //var viewHeightAnimation = new Animation(v => View.HeightRequest = v, 216, 180); - //var viewWidthAnimation = new Animation(v => View.WidthRequest = v, 384, 320); - //var imageWidthAnimation = new Animation(v => ThumbnailImage.Scale = v, 1.2, 1); - //var imagePositionAnimation = new Animation(v => ThumbnailImage.TranslationX = v, 32, 0); - //var titleAnimation = new Animation(v => ThumbnailTitle.Opacity = v, 0.99, 0); - //Animation.Add(0, 1, viewHeightAnimation); - //Animation.Add(0, 1, viewWidthAnimation); - //Animation.Add(0, 1, imageWidthAnimation); - //Animation.Add(0, 1, imagePositionAnimation); - //Animation.Add(0, 1, titleAnimation); - //Animation.Commit(ThumbnailTitle, "UnfocusedAnimation", 16, 300); - #pragma warning disable CS4014 //ThumbnailTitle.FadeTo(0.3, 300); ThumbnailGradient.Source = "ic_list_thumbnail_gradient_normal.9.png"; |