| 1234567891011121314151617181920212223242526272829 | <UserControl x:Class="PunkHPX8_MainPages.Views.ResistivityProbeView"             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"              d:DesignHeight="450" d:DesignWidth="800">    <Grid>        <ItemsControl ItemsSource="{Binding ThorntonDeviceConfig.ThorntonDevices}" >            <ItemsControl.ItemsPanel>                <ItemsPanelTemplate>                    <WrapPanel Orientation="Horizontal"/>                </ItemsPanelTemplate>            </ItemsControl.ItemsPanel>            <ItemsControl.ItemTemplate>                <DataTemplate>                    <UserControls:ResistivityProbeControl Margin="10,0" ModuleTitle="{Binding Name}" ModuleName="{Binding Name}"                                                           IsConnected="{Binding IsConnected}" ResistivityValue="{Binding ResistivityValue}">                    </UserControls:ResistivityProbeControl>                </DataTemplate>            </ItemsControl.ItemTemplate>        </ItemsControl>    </Grid></UserControl>
 |