Archived
0

Create repository

This commit is contained in:
iMoHax
2014-07-16 16:38:48 +04:00
committed by iMoHax
commit 15bfe2e0f3
79 changed files with 5741 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<?import ru.trader.view.support.cells.OfferListCell?>
<VBox xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1"
fx:controller="ru.trader.controllers.ItemDescController">
<Label text="Продавцы:"/>
<ListView fx:id="seller" maxHeight="200.0">
<cellFactory>
<OfferListCell/>
</cellFactory>
</ListView>
<Label text="Покупатели:"/>
<ListView fx:id="buyer" maxHeight="200.0">
<cellFactory>
<OfferListCell/>
</cellFactory>
</ListView>
</VBox>