651c1e32af
-aggiunto finestra OnlyProd_QParamListV, OnlyProdAxesPanelV, OnlyProdCalcPanelV, OnlyProdPartInRawPartListV, OnlyProdRawPartListV, OnlyProdLeftPanelV, OnlyProdProjectV, OnlyProdShowPanelV, OnlyProdSupervisorManagerV, OnlyProdViewPanelV, OnlyProdMainMenuV
24 lines
979 B
XML
24 lines
979 B
XML
<UserControl x:Class="OnlyProdAxesPanelV"
|
|
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"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
<ItemsControl ItemsSource="{Binding AxesList}"
|
|
Foreground="{StaticResource BeamWall_Corduroy}"
|
|
TextBlock.TextAlignment="Center">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<UniformGrid Columns="3">
|
|
<TextBlock Text="{Binding nId}"/>
|
|
<TextBlock Text="{Binding sName}"/>
|
|
<TextBlock Text="{Binding sValue}"/>
|
|
</UniformGrid>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
|
|
</UserControl>
|