| 1234567891011121314151617181920212223242526272829 | <UserControl x:Class="PunkHPX8_MainPages.Views.LinMotView"             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"              xmlns:local="clr-namespace:PunkHPX8_MainPages.Views"             xmlns:prism="http://prismlibrary.com/"              prism:ViewModelLocator.AutoWireViewModel="True"             xmlns:UserControls="clr-namespace:PunkHPX8_Themes.UserControls;assembly=PunkHPX8_Themes"             mc:Ignorable="d" Name="self"             d:DesignHeight="450" d:DesignWidth="800">    <Grid>        <ItemsControl ItemsSource="{Binding LinmotDeviceConfig.LinmotDevices}">            <ItemsControl.ItemsPanel>                <ItemsPanelTemplate>                    <WrapPanel Orientation="Horizontal"/>                </ItemsPanelTemplate>            </ItemsControl.ItemsPanel>            <ItemsControl.ItemTemplate>                <DataTemplate>                    <UserControls:LinMotControl  Margin="10,0" Width="400" Height="360" ModuleTitle="{Binding Name}" ModuleName="{Binding Name}"                                                     StatusWord="{Binding StatusWord}" ParentModule="{Binding ParentName}" IsConnected="{Binding IsConnected}"                                                 CurrentSpeed="{Binding Speed}" Position="{Binding Position}"></UserControls:LinMotControl>                </DataTemplate>            </ItemsControl.ItemTemplate>        </ItemsControl>    </Grid></UserControl>
 |