| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to you 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. |
| --> |
| |
| <TablePane xmlns:bxml="http://pivot.apache.org/bxml" |
| xmlns="org.apache.pivot.wtk" |
| styles="{padding:8,verticalSpacing:6,horizontalSpacing:6}"> |
| <columns> |
| <TablePane.Column width="-1"/> |
| <TablePane.Column width="-1"/> |
| </columns> |
| <rows> |
| <TablePane.Row height="-1"> |
| <Slider bxml:id="slider1" range="{start:-100, end:100}" value="0" styles="{tickSpacing:10}"/> |
| <Label bxml:id="valueLabel1" text="0"/> |
| </TablePane.Row> |
| <TablePane.Row height="-1"> |
| <ImageView bxml:id="imageView" preferredWidth="120" preferredHeight="120"/> |
| <BoxPane> |
| <Slider bxml:id="slider2" range="{start:-100, end:100}" value="0" orientation="vertical" styles="{tickSpacing:10}"/> |
| <Label bxml:id="valueLabel2" text="0"/> |
| </BoxPane> |
| </TablePane.Row> |
| </rows> |
| </TablePane> |