Advertisement
Guest User

Top ListView

a guest
Sep 2nd, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 0.53 KB | None | 0 0
  1. <div class="plc-panel container-fluid mt-2">
  2.     <WebFpListView TModel="PlcDeviceVM" DataSource="@_plcDeviceList.PlcDevices"
  3.                   Readonly="true" HorizontalItemAlignment="@HorizontalAlignment.Even"
  4.                   ShowHeader="false" MaxHeight="100px" Horizontal="true">
  5.         <ItemContentTemplate>
  6.             @{
  7.                 PlcDeviceVM plcDevice = (PlcDeviceVM) context;
  8.                 <PlcDisplay Width="300px" Device="@plcDevice" />
  9.             }
  10.         </ItemContentTemplate>
  11.     </WebFpListView>
  12. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement