c529c9dd59
- aggiungo file mancanti.
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<UserControl x:Class="FlatPartsImportUC"
|
|
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="853.3" d:DesignWidth="1024" Loaded="FlatPartsImportUC_Loaded" Initialized="FlatPartsImportUC_Initialized">
|
|
|
|
<!-- Chiamata al dizionario -->
|
|
<UserControl.Resources>
|
|
<ResourceDictionary Source="OmagCUTDictionary.xaml"/>
|
|
</UserControl.Resources>
|
|
|
|
<!-- Definizione della PAGINA FLAT PARTS IMPORT -->
|
|
<Grid Name="BackGroundGridFlatPartsImport">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="3*"/>
|
|
<ColumnDefinition Width="9*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="{StaticResource TabPageRow0Width}"/>
|
|
<RowDefinition Height="{StaticResource TabPageRow1Width}"/>
|
|
<RowDefinition Height="{StaticResource TabPageRow2Width}"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBlock Text="TextBlock" />
|
|
|
|
<ListView Name="ListView1" Grid.Row="1" Grid.RowSpan="2" SelectionChanged="ScenaFlatPartsImportUC_SelectionChanged">
|
|
<ListView.View>
|
|
<GridView>
|
|
<GridViewColumn/>
|
|
</GridView>
|
|
</ListView.View>
|
|
</ListView>
|
|
|
|
</Grid>
|
|
</UserControl>
|