From: rina6350.you Date: Thu, 11 May 2017 04:56:23 +0000 (+0900) Subject: Add a Toolbar TC X-Git-Tag: submit/trunk/20170823.075128~110^2~99^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=04f35866f6e63d4ef27a7af87e03a764f5137b4c;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Add a Toolbar TC Change-Id: I1d59c8172ceb0cadf9a3b8e356f3823c67c77287 --- diff --git a/test/ElmSharp.Test/ElmSharp.Test.csproj b/test/ElmSharp.Test/ElmSharp.Test.csproj index ed2ba74..c03dcef 100755 --- a/test/ElmSharp.Test/ElmSharp.Test.csproj +++ b/test/ElmSharp.Test/ElmSharp.Test.csproj @@ -107,6 +107,7 @@ + @@ -197,11 +198,11 @@ - + - + - + \ No newline at end of file diff --git a/test/ElmSharp.Test/TC/ToolbarTest2.cs b/test/ElmSharp.Test/TC/ToolbarTest2.cs new file mode 100755 index 0000000..8e19d1d --- /dev/null +++ b/test/ElmSharp.Test/TC/ToolbarTest2.cs @@ -0,0 +1,73 @@ +/* + * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved + * + * Licensed under the Apache License, Version 2.0 (the License); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an AS IS BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using ElmSharp; +using System.Collections.Generic; + +namespace ElmSharp.Test +{ + public class ToolbarTest2 : TestCaseBase + { + Dictionary _itemTable = new Dictionary(); + Dictionary _reverseItemTable = new Dictionary(); + public override string TestName => "ToolbarTest2"; + public override string TestDescription => "To test basic operation of Toolbar"; + public override void Run(Window window) + { + Conformant conformant = new Conformant(window); + conformant.Show(); + Box outterBox = new Box(window) + { + AlignmentX = -1, + AlignmentY = -1, + WeightX = 1, + WeightY = 1, + IsHorizontal = false, + BackgroundColor = Color.Aqua, + }; + outterBox.Show(); + + Toolbar toolbar = new Toolbar(window) + { + AlignmentX = -1, + WeightX = 1, + }; + + toolbar.Show(); + outterBox.PackEnd(toolbar); + + int idx = 1; + ToolbarItem item = toolbar.Append(string.Format("{0} home", idx), "home"); + idx++; + + Button bt = new Button(window) + { + Text = "Add ToolbarItem", + MinimumWidth = 400 + }; + bt.Clicked += (s, e) => + { + ToolbarItem item2 = toolbar.Append(string.Format("{0} home", idx), "home"); + idx++; + }; + + bt.Show(); + outterBox.PackEnd(bt); + conformant.SetContent(outterBox); + } + } +}