/* * 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 ToolbarTest3 : TestCaseBase { Dictionary _itemTable = new Dictionary(); Dictionary _reverseItemTable = new Dictionary(); public override string TestName => "ToolbarTest3"; public override string TestDescription => "To test basic operation of Toolbar for changing bg color"; 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, }; var rnd = new Random(); toolbar.BackgroundColor = Color.FromRgb(rnd.Next(255), rnd.Next(255), rnd.Next(255)); toolbar.Show(); outterBox.PackEnd(toolbar); toolbar.Selected += (s, e) => { e.Item.DeletePartColor("bg"); }; Label lb = new Label(window) { Text = "Please, click an item for delete part color", }; lb.Show(); outterBox.PackEnd(lb); for (int i = 0; i < 5; i++) { ToolbarItem item = toolbar.Append(string.Format("{0} home", i), "home"); Color bgColor = Color.FromRgb(rnd.Next(255), rnd.Next(255), rnd.Next(255)); item.SetPartColor("bg", bgColor); item.Clicked += (s, e) => { lb.Text = (s as ToolbarItem).Text+" clicked"; }; } conformant.SetContent(outterBox); } } }